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

Unified Diff: ui/base/test/ui_controls_aura.cc

Issue 851853002: It is time. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Trying to reup because the last upload failed. Created 5 years, 11 months 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 | « ui/base/test/ui_controls_aura.h ('k') | ui/base/test/ui_controls_internal_win.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/base/test/ui_controls_aura.cc
diff --git a/ui/base/test/ui_controls_aura.cc b/ui/base/test/ui_controls_aura.cc
deleted file mode 100644
index c8367ab803997d1303a8d92c110686a180e1b538..0000000000000000000000000000000000000000
--- a/ui/base/test/ui_controls_aura.cc
+++ /dev/null
@@ -1,95 +0,0 @@
-// Copyright 2013 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 "ui/base/test/ui_controls_aura.h"
-
-#include "base/logging.h"
-
-namespace ui_controls {
-namespace {
-UIControlsAura* instance_ = NULL;
-bool g_ui_controls_enabled = false;
-} // namespace
-
-void EnableUIControls() {
- g_ui_controls_enabled = true;
-}
-
-// An interface to provide Aura implementation of UI control.
-bool SendKeyPress(gfx::NativeWindow window,
- ui::KeyboardCode key,
- bool control,
- bool shift,
- bool alt,
- bool command) {
- CHECK(g_ui_controls_enabled);
- return instance_->SendKeyPress(
- window, key, control, shift, alt, command);
-}
-
-// static
-bool SendKeyPressNotifyWhenDone(gfx::NativeWindow window,
- ui::KeyboardCode key,
- bool control,
- bool shift,
- bool alt,
- bool command,
- const base::Closure& task) {
- CHECK(g_ui_controls_enabled);
- return instance_->SendKeyPressNotifyWhenDone(
- window, key, control, shift, alt, command, task);
-}
-
-// static
-bool SendMouseMove(long x, long y) {
- CHECK(g_ui_controls_enabled);
- return instance_->SendMouseMove(x, y);
-}
-
-// static
-bool SendMouseMoveNotifyWhenDone(long x,
- long y,
- const base::Closure& task) {
- CHECK(g_ui_controls_enabled);
- return instance_->SendMouseMoveNotifyWhenDone(x, y, task);
-}
-
-// static
-bool SendMouseEvents(MouseButton type, int state) {
- CHECK(g_ui_controls_enabled);
- return instance_->SendMouseEvents(type, state);
-}
-
-// static
-bool SendMouseEventsNotifyWhenDone(MouseButton type,
- int state,
- const base::Closure& task) {
- CHECK(g_ui_controls_enabled);
- return instance_->SendMouseEventsNotifyWhenDone(type, state, task);
-}
-
-// static
-bool SendMouseClick(MouseButton type) {
- CHECK(g_ui_controls_enabled);
- return instance_->SendMouseClick(type);
-}
-
-// static
-void RunClosureAfterAllPendingUIEvents(const base::Closure& closure) {
- instance_->RunClosureAfterAllPendingUIEvents(closure);
-}
-
-UIControlsAura::UIControlsAura() {
-}
-
-UIControlsAura::~UIControlsAura() {
-}
-
-// static. declared in ui_controls.h
-void InstallUIControlsAura(UIControlsAura* instance) {
- delete instance_;
- instance_ = instance;
-}
-
-} // namespace ui_controls
« no previous file with comments | « ui/base/test/ui_controls_aura.h ('k') | ui/base/test/ui_controls_internal_win.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698