Merge pull request #4050 from etiktin/cosmetic
Remove unneeded extra semicolons (;; -> ;)
This commit is contained in:
commit
91ca84d106
3 changed files with 3 additions and 3 deletions
|
@ -37,7 +37,7 @@ bool UvTaskRunner::PostNonNestableDelayedTask(
|
||||||
const tracked_objects::Location& from_here,
|
const tracked_objects::Location& from_here,
|
||||||
const base::Closure& task,
|
const base::Closure& task,
|
||||||
base::TimeDelta delay) {
|
base::TimeDelta delay) {
|
||||||
return PostDelayedTask(from_here, task, delay);;
|
return PostDelayedTask(from_here, task, delay);
|
||||||
}
|
}
|
||||||
|
|
||||||
// static
|
// static
|
||||||
|
|
|
@ -992,7 +992,7 @@ void WebContents::SendInputEvent(v8::Isolate* isolate,
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
} else if (blink::WebInputEvent::isKeyboardEventType(type)) {
|
} else if (blink::WebInputEvent::isKeyboardEventType(type)) {
|
||||||
content::NativeWebKeyboardEvent keyboard_event;;
|
content::NativeWebKeyboardEvent keyboard_event;
|
||||||
if (mate::ConvertFromV8(isolate, input_event, &keyboard_event)) {
|
if (mate::ConvertFromV8(isolate, input_event, &keyboard_event)) {
|
||||||
host->ForwardKeyboardEvent(keyboard_event);
|
host->ForwardKeyboardEvent(keyboard_event);
|
||||||
return;
|
return;
|
||||||
|
|
|
@ -88,7 +88,7 @@ void AtomRenderViewObserver::DidCreateDocumentElement(
|
||||||
|
|
||||||
// Read --zoom-factor from command line.
|
// Read --zoom-factor from command line.
|
||||||
std::string zoom_factor_str = base::CommandLine::ForCurrentProcess()->
|
std::string zoom_factor_str = base::CommandLine::ForCurrentProcess()->
|
||||||
GetSwitchValueASCII(switches::kZoomFactor);;
|
GetSwitchValueASCII(switches::kZoomFactor);
|
||||||
if (zoom_factor_str.empty())
|
if (zoom_factor_str.empty())
|
||||||
return;
|
return;
|
||||||
double zoom_factor;
|
double zoom_factor;
|
||||||
|
|
Loading…
Reference in a new issue