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

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

Issue 8585015: Implement ui_controls for aura (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: no mask for xsendevent 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/automation/ui_controls_aurawin.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
deleted file mode 100644
index d3bbb96c101294011eb45e9d46868e78dd28e9e6..0000000000000000000000000000000000000000
--- a/chrome/browser/automation/ui_controls_aura.cc
+++ /dev/null
@@ -1,70 +0,0 @@
-// Copyright (c) 2011 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#include "chrome/browser/automation/ui_controls.h"
-
-#include "base/logging.h"
-#include "views/view.h"
-
-namespace ui_controls {
-
-bool SendKeyPress(gfx::NativeWindow window,
- ui::KeyboardCode key,
- bool control,
- bool shift,
- bool alt,
- bool command) {
- // http://crbug.com/104396
- NOTIMPLEMENTED();
- return true;
-}
-
-bool SendKeyPressNotifyWhenDone(gfx::NativeWindow window,
- ui::KeyboardCode key,
- bool control,
- bool shift,
- 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;
-}
-
-bool SendMouseClick(MouseButton type) {
- return SendMouseEvents(type, UP | DOWN);
-}
-
-void MoveMouseToCenterAndPress(views::View* view, MouseButton button,
- int state, const base::Closure& task) {
- // http://crbug.com/104396
- NOTIMPLEMENTED();
-}
-
-} // namespace ui_controls
« no previous file with comments | « no previous file | chrome/browser/automation/ui_controls_aurawin.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698