Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(4363)

Unified Diff: chrome/browser/automation/ui_controls_aurax11.cc

Issue 8820006: Fixes bug in ui_controls_aurax11. A return value of false means (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Merge to trunk Created 9 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/automation/ui_controls_aurax11.cc
diff --git a/chrome/browser/automation/ui_controls_aurax11.cc b/chrome/browser/automation/ui_controls_aurax11.cc
index 20c4c17e15296edc01d9405a7434cd3f9382e5be..3dcd58a5f8eda6ed02828666df3e19bf99c2eadc 100644
--- a/chrome/browser/automation/ui_controls_aurax11.cc
+++ b/chrome/browser/automation/ui_controls_aurax11.cc
@@ -148,7 +148,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) {
@@ -191,7 +191,7 @@ bool SendMouseEventsNotifyWhenDone(MouseButton type,
desktop->PostNativeEvent(&xevent);
}
RunClosureAfterAllPendingUIEvents(closure);
- return false;
+ return true;
}
bool SendMouseClick(MouseButton type) {
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698