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

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

Issue 8585015: Implement ui_controls for aura (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: " Created 9 years, 1 month 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
Index: chrome/browser/automation/ui_controls_gtk.cc
diff --git a/chrome/browser/automation/ui_controls_gtk.cc b/chrome/browser/automation/ui_controls_gtk.cc
index 0ca2378080398ea48f757899b5d361109a00ef3e..58b9825bb4f5c997abc1030ece66c8c3c31da36c 100644
--- a/chrome/browser/automation/ui_controls_gtk.cc
+++ b/chrome/browser/automation/ui_controls_gtk.cc
@@ -302,7 +302,7 @@ void MoveMouseToCenterAndPress(views::View* view, MouseButton button,
views::View::ConvertPointToScreen(view, &view_center);
SendMouseMoveNotifyWhenDone(
view_center.x(), view_center.y(),
- base::Bind(&ui_controls::ClickTask, button, state, task));
+ base::Bind(&ui_controls::internal::ClickTask, button, state, task));
}
#else
void MoveMouseToCenterAndPress(GtkWidget* widget,
@@ -313,7 +313,7 @@ void MoveMouseToCenterAndPress(GtkWidget* widget,
SendMouseMoveNotifyWhenDone(
bounds.x() + bounds.width() / 2,
bounds.y() + bounds.height() / 2,
- base::Bind(&ui_controls::ClickTask, button, state, task));
+ base::Bind(&ui_controls::internal::ClickTask, button, state, task));
}
#endif

Powered by Google App Engine
This is Rietveld 408576698