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

Unified Diff: remoting/host/input_injector_chromeos.h

Issue 718313002: Revert "Remote assistance on Chrome OS Part VIII - Compile on Ozone" (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 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 | « remoting/host/desktop_shape_tracker_x11.cc ('k') | remoting/host/input_injector_chromeos.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/host/input_injector_chromeos.h
diff --git a/remoting/host/input_injector_chromeos.h b/remoting/host/input_injector_chromeos.h
deleted file mode 100644
index 7670591af622667c6b31e59e011d8315aed5ed04..0000000000000000000000000000000000000000
--- a/remoting/host/input_injector_chromeos.h
+++ /dev/null
@@ -1,42 +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.
-
-#ifndef REMOTING_HOST_INPUT_INJECTOR_CHROMEOS_H_
-#define REMOTING_HOST_INPUT_INJECTOR_CHROMEOS_H_
-
-#include "base/single_thread_task_runner.h"
-#include "remoting/host/input_injector.h"
-
-namespace remoting {
-
-// InputInjector implementation that translates input to ui::Events and passes
-// them to a supplied delegate for injection into ChromeOS.
-class InputInjectorChromeos : public InputInjector {
- public:
- explicit InputInjectorChromeos(
- scoped_refptr<base::SingleThreadTaskRunner> task_runner);
-
- ~InputInjectorChromeos() override;
-
- // Clipboard stub interface.
- void InjectClipboardEvent(const protocol::ClipboardEvent& event) override;
-
- // InputStub interface.
- void InjectKeyEvent(const protocol::KeyEvent& event) override;
- void InjectTextEvent(const protocol::TextEvent& event) override;
- void InjectMouseEvent(const protocol::MouseEvent& event) override;
-
- // InputInjector interface.
- void Start(scoped_ptr<protocol::ClipboardStub> client_clipboard) override;
-
- private:
- // Task runner for input injection.
- scoped_refptr<base::SingleThreadTaskRunner> input_task_runner_;
-
- DISALLOW_COPY_AND_ASSIGN(InputInjectorChromeos);
-};
-
-} // namespace remoting
-
-#endif // REMOTING_HOST_INPUT_INJECTOR_CHROMEOS_H_
« no previous file with comments | « remoting/host/desktop_shape_tracker_x11.cc ('k') | remoting/host/input_injector_chromeos.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698