summaryrefslogtreecommitdiffstats
path: root/chrome
diff options
context:
space:
mode:
authorsadrul@chromium.org <sadrul@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-10-17 16:09:37 +0000
committersadrul@chromium.org <sadrul@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-10-17 16:09:37 +0000
commit0750b5c663a00867336cf1e3722524cf6e9d3fb4 (patch)
treeb79d2fd7f0dcffd24f97a44f48ea63f446ba7ef0 /chrome
parent5951806fdc9a6d3063014b0479307dba66767f97 (diff)
downloadchromium_src-0750b5c663a00867336cf1e3722524cf6e9d3fb4.zip
chromium_src-0750b5c663a00867336cf1e3722524cf6e9d3fb4.tar.gz
chromium_src-0750b5c663a00867336cf1e3722524cf6e9d3fb4.tar.bz2
aura: Fix chrome compile after the switch from Task to base::Bind.
TBR=jhawkins@chromium.org BUG=none TEST=none Review URL: http://codereview.chromium.org/8322004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@105817 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome')
-rw-r--r--chrome/browser/automation/ui_controls_aura.cc9
1 files changed, 5 insertions, 4 deletions
diff --git a/chrome/browser/automation/ui_controls_aura.cc b/chrome/browser/automation/ui_controls_aura.cc
index c5a7ed7..b31ac23 100644
--- a/chrome/browser/automation/ui_controls_aura.cc
+++ b/chrome/browser/automation/ui_controls_aura.cc
@@ -25,7 +25,7 @@ bool SendKeyPressNotifyWhenDone(gfx::NativeWindow window,
bool shift,
bool alt,
bool command,
- Task* task) {
+ const base::Closure& task) {
NOTIMPLEMENTED();
return true;
}
@@ -35,7 +35,7 @@ bool SendMouseMove(long x, long y) {
return true;
}
-bool SendMouseMoveNotifyWhenDone(long x, long y, Task* task) {
+bool SendMouseMoveNotifyWhenDone(long x, long y, const base::Closure& task) {
NOTIMPLEMENTED();
return true;
}
@@ -45,7 +45,8 @@ bool SendMouseEvents(MouseButton type, int state) {
return true;
}
-bool SendMouseEventsNotifyWhenDone(MouseButton type, int state, Task* task) {
+bool SendMouseEventsNotifyWhenDone(MouseButton type, int state,
+ const base::Closure& task) {
NOTIMPLEMENTED();
return true;
}
@@ -55,7 +56,7 @@ bool SendMouseClick(MouseButton type) {
}
void MoveMouseToCenterAndPress(views::View* view, MouseButton button,
- int state, Task* task) {
+ int state, const base::Closure& task) {
NOTIMPLEMENTED();
}