blob: 5d0a3e74b3f7bb6355ff71745c167e79d9abb61f [file] [log] [blame]
// 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/callback.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,
base::OnceClosure task) {
CHECK(g_ui_controls_enabled);
return instance_->SendKeyPressNotifyWhenDone(window, key, control, shift, alt,
command, std::move(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, base::OnceClosure task) {
CHECK(g_ui_controls_enabled);
return instance_->SendMouseMoveNotifyWhenDone(x, y, std::move(task));
}
// static
bool SendMouseEvents(MouseButton type,
int button_state,
int accelerator_state) {
CHECK(g_ui_controls_enabled);
return instance_->SendMouseEvents(type, button_state, accelerator_state);
}
// static
bool SendMouseEventsNotifyWhenDone(MouseButton type,
int button_state,
base::OnceClosure task,
int accelerator_state) {
CHECK(g_ui_controls_enabled);
return instance_->SendMouseEventsNotifyWhenDone(
type, button_state, std::move(task), accelerator_state);
}
// static
bool SendMouseClick(MouseButton type) {
CHECK(g_ui_controls_enabled);
return instance_->SendMouseClick(type);
}
#if defined(OS_WIN)
// static
bool SendTouchEvents(int action, int num, int x, int y) {
CHECK(g_ui_controls_enabled);
return instance_->SendTouchEvents(action, num, x, y);
}
#elif defined(OS_CHROMEOS)
// static
bool SendTouchEvents(int action, int id, int x, int y) {
CHECK(g_ui_controls_enabled);
return instance_->SendTouchEvents(action, id, x, y);
}
// static
bool SendTouchEventsNotifyWhenDone(int action,
int id,
int x,
int y,
base::OnceClosure task) {
CHECK(g_ui_controls_enabled);
return instance_->SendTouchEventsNotifyWhenDone(action, id, x, y,
std::move(task));
}
#endif
UIControlsAura::UIControlsAura() {
}
UIControlsAura::~UIControlsAura() {
}
// static. declared in ui_controls.h
void InstallUIControlsAura(UIControlsAura* instance) {
delete instance_;
instance_ = instance;
}
} // namespace ui_controls