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

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

Issue 8570019: Adds bug id to ui_controls_aura and marks a test FAILS on aura because (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
« no previous file with comments | « no previous file | chrome/browser/history/redirect_uitest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/automation/ui_controls_aura.cc
diff --git a/chrome/browser/automation/ui_controls_aura.cc b/chrome/browser/automation/ui_controls_aura.cc
index b31ac236080eaf34297282bd080ea196f0b8fcaf..d3bbb96c101294011eb45e9d46868e78dd28e9e6 100644
--- a/chrome/browser/automation/ui_controls_aura.cc
+++ b/chrome/browser/automation/ui_controls_aura.cc
@@ -15,6 +15,7 @@ bool SendKeyPress(gfx::NativeWindow window,
bool shift,
bool alt,
bool command) {
+ // http://crbug.com/104396
NOTIMPLEMENTED();
return true;
}
@@ -26,27 +27,32 @@ bool SendKeyPressNotifyWhenDone(gfx::NativeWindow window,
bool alt,
bool command,
const base::Closure& task) {
+ // http://crbug.com/104396
NOTIMPLEMENTED();
return true;
}
bool SendMouseMove(long x, long y) {
+ // http://crbug.com/104396
NOTIMPLEMENTED();
return true;
}
bool SendMouseMoveNotifyWhenDone(long x, long y, const base::Closure& task) {
+ // http://crbug.com/104396
NOTIMPLEMENTED();
return true;
}
bool SendMouseEvents(MouseButton type, int state) {
+ // http://crbug.com/104396
NOTIMPLEMENTED();
return true;
}
bool SendMouseEventsNotifyWhenDone(MouseButton type, int state,
const base::Closure& task) {
+ // http://crbug.com/104396
NOTIMPLEMENTED();
return true;
}
@@ -57,6 +63,7 @@ bool SendMouseClick(MouseButton type) {
void MoveMouseToCenterAndPress(views::View* view, MouseButton button,
int state, const base::Closure& task) {
+ // http://crbug.com/104396
NOTIMPLEMENTED();
}
« no previous file with comments | « no previous file | chrome/browser/history/redirect_uitest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698