diff options
-rw-r--r-- | chrome/browser/automation/ui_controls_aurax11.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/browser/automation/ui_controls_aurax11.cc b/chrome/browser/automation/ui_controls_aurax11.cc index 3b7a5ee..4f207dc 100644 --- a/chrome/browser/automation/ui_controls_aurax11.cc +++ b/chrome/browser/automation/ui_controls_aurax11.cc @@ -150,7 +150,7 @@ bool SendMouseMoveNotifyWhenDone(long x, long y, const base::Closure& closure) { // Desktop will take care of other necessary fields. aura::Desktop::GetInstance()->PostNativeEvent(&xevent); RunClosureAfterAllPendingUIEvents(closure); - return false; + return true; } bool SendMouseEvents(MouseButton type, int state) { @@ -193,7 +193,7 @@ bool SendMouseEventsNotifyWhenDone(MouseButton type, desktop->PostNativeEvent(&xevent); } RunClosureAfterAllPendingUIEvents(closure); - return false; + return true; } bool SendMouseClick(MouseButton type) { |