Commit c991cdaf authored by sky@chromium.org's avatar sky@chromium.org

Adds bug id to ui_controls_aura and marks a test FAILS on aura because

of ui_controls_aura NOTIMPLEMENTED.


R=ben@chromium.org
BUG=104396
TEST=none


Review URL: http://codereview.chromium.org/8570019

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@110253 0039d316-1c4b-4281-b951-d872f2087c98
parent fa7d00d1
...@@ -15,6 +15,7 @@ bool SendKeyPress(gfx::NativeWindow window, ...@@ -15,6 +15,7 @@ bool SendKeyPress(gfx::NativeWindow window,
bool shift, bool shift,
bool alt, bool alt,
bool command) { bool command) {
// http://crbug.com/104396
NOTIMPLEMENTED(); NOTIMPLEMENTED();
return true; return true;
} }
...@@ -26,27 +27,32 @@ bool SendKeyPressNotifyWhenDone(gfx::NativeWindow window, ...@@ -26,27 +27,32 @@ bool SendKeyPressNotifyWhenDone(gfx::NativeWindow window,
bool alt, bool alt,
bool command, bool command,
const base::Closure& task) { const base::Closure& task) {
// http://crbug.com/104396
NOTIMPLEMENTED(); NOTIMPLEMENTED();
return true; return true;
} }
bool SendMouseMove(long x, long y) { bool SendMouseMove(long x, long y) {
// http://crbug.com/104396
NOTIMPLEMENTED(); NOTIMPLEMENTED();
return true; return true;
} }
bool SendMouseMoveNotifyWhenDone(long x, long y, const base::Closure& task) { bool SendMouseMoveNotifyWhenDone(long x, long y, const base::Closure& task) {
// http://crbug.com/104396
NOTIMPLEMENTED(); NOTIMPLEMENTED();
return true; return true;
} }
bool SendMouseEvents(MouseButton type, int state) { bool SendMouseEvents(MouseButton type, int state) {
// http://crbug.com/104396
NOTIMPLEMENTED(); NOTIMPLEMENTED();
return true; return true;
} }
bool SendMouseEventsNotifyWhenDone(MouseButton type, int state, bool SendMouseEventsNotifyWhenDone(MouseButton type, int state,
const base::Closure& task) { const base::Closure& task) {
// http://crbug.com/104396
NOTIMPLEMENTED(); NOTIMPLEMENTED();
return true; return true;
} }
...@@ -57,6 +63,7 @@ bool SendMouseClick(MouseButton type) { ...@@ -57,6 +63,7 @@ bool SendMouseClick(MouseButton type) {
void MoveMouseToCenterAndPress(views::View* view, MouseButton button, void MoveMouseToCenterAndPress(views::View* view, MouseButton button,
int state, const base::Closure& task) { int state, const base::Closure& task) {
// http://crbug.com/104396
NOTIMPLEMENTED(); NOTIMPLEMENTED();
} }
......
...@@ -132,7 +132,10 @@ TEST_F(RedirectTest, FLAKY_ClientEmptyReferer) { ...@@ -132,7 +132,10 @@ TEST_F(RedirectTest, FLAKY_ClientEmptyReferer) {
// Tests to make sure a location change when a pending redirect exists isn't // Tests to make sure a location change when a pending redirect exists isn't
// flagged as a redirect. // flagged as a redirect.
#if defined(OS_MACOSX) #if defined(USE_AURA)
// http://crbug.com/104396
#define MAYBE_ClientCancelled FAILS_ClientCancelled
#elif defined(OS_MACOSX)
// SimulateOSClick is broken on the Mac: http://crbug.com/45162 // SimulateOSClick is broken on the Mac: http://crbug.com/45162
#define MAYBE_ClientCancelled DISABLED_ClientCancelled #define MAYBE_ClientCancelled DISABLED_ClientCancelled
#elif defined(OS_WIN) #elif defined(OS_WIN)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment