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