| 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
|
|
|
|
|