summaryrefslogtreecommitdiffstats
path: root/remoting/host/input_injector_chromeos.cc
diff options
context:
space:
mode:
authorLei Zhang <thestig@chromium.org>2014-11-12 19:18:40 -0800
committerLei Zhang <thestig@chromium.org>2014-11-13 03:20:16 +0000
commit67f2f75837c4ba2e877bb5fd2ff2da7149bfcc32 (patch)
tree8c2a74e36abd72e2f911716007e76def240c4e39 /remoting/host/input_injector_chromeos.cc
parent18ffa032d49f63f8ae00e68ea7a870e61527bea5 (diff)
downloadchromium_src-67f2f75837c4ba2e877bb5fd2ff2da7149bfcc32.zip
chromium_src-67f2f75837c4ba2e877bb5fd2ff2da7149bfcc32.tar.gz
chromium_src-67f2f75837c4ba2e877bb5fd2ff2da7149bfcc32.tar.bz2
Revert "Remote assistance on Chrome OS Part VIII - Compile on Ozone"
This reverts commit 18ffa032d49f63f8ae00e68ea7a870e61527bea5. It broke ChromiumOS GN. R=kelvinp@chromium.org Review URL: https://codereview.chromium.org/718313002 Cr-Commit-Position: refs/heads/master@{#303972}
Diffstat (limited to 'remoting/host/input_injector_chromeos.cc')
-rw-r--r--remoting/host/input_injector_chromeos.cc58
1 files changed, 0 insertions, 58 deletions
diff --git a/remoting/host/input_injector_chromeos.cc b/remoting/host/input_injector_chromeos.cc
deleted file mode 100644
index a18b1cd..0000000
--- a/remoting/host/input_injector_chromeos.cc
+++ /dev/null
@@ -1,58 +0,0 @@
-// Copyright 2014 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 "remoting/host/input_injector_chromeos.h"
-
-#include "base/logging.h"
-#include "remoting/proto/internal.pb.h"
-
-namespace remoting {
-
-using protocol::ClipboardEvent;
-using protocol::KeyEvent;
-using protocol::MouseEvent;
-using protocol::TextEvent;
-
-// TODO(kelvinp): Implement this class (See crbug.com/426716).
-InputInjectorChromeos::InputInjectorChromeos(
- scoped_refptr<base::SingleThreadTaskRunner> task_runner)
- : input_task_runner_(task_runner) {
- NOTIMPLEMENTED();
-}
-
-InputInjectorChromeos::~InputInjectorChromeos() {
- NOTIMPLEMENTED();
-}
-
-void InputInjectorChromeos::InjectClipboardEvent(const ClipboardEvent& event) {
- NOTIMPLEMENTED();
-}
-
-void InputInjectorChromeos::InjectKeyEvent(const KeyEvent& event) {
- NOTIMPLEMENTED();
-}
-
-void InputInjectorChromeos::InjectTextEvent(const TextEvent& event) {
- NOTIMPLEMENTED();
-}
-
-void InputInjectorChromeos::InjectMouseEvent(const MouseEvent& event) {
- NOTIMPLEMENTED();
-}
-
-void InputInjectorChromeos::Start(
- scoped_ptr<protocol::ClipboardStub> client_clipboard) {
- NOTIMPLEMENTED();
-}
-
-// static
-scoped_ptr<InputInjector> InputInjector::Create(
- scoped_refptr<base::SingleThreadTaskRunner> input_task_runner,
- scoped_refptr<base::SingleThreadTaskRunner> ui_task_runner) {
- scoped_ptr<InputInjectorChromeos> injector(new InputInjectorChromeos(
- ui_task_runner));
- return injector.Pass();
-}
-
-} // namespace remoting