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

Side by Side Diff: remoting/host/input_injector_linux.cc

Issue 628753002: replace OVERRIDE and FINAL with override and final in remoting/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase on master Created 6 years, 2 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 unified diff | Download patch
« no previous file with comments | « remoting/host/in_memory_host_config.h ('k') | remoting/host/input_injector_mac.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "remoting/host/input_injector.h" 5 #include "remoting/host/input_injector.h"
6 6
7 #include <X11/extensions/XInput.h> 7 #include <X11/extensions/XInput.h>
8 #include <X11/extensions/XTest.h> 8 #include <X11/extensions/XTest.h>
9 #include <X11/Xlib.h> 9 #include <X11/Xlib.h>
10 #include <X11/XKBlib.h> 10 #include <X11/XKBlib.h>
(...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after
90 // A class to generate events on Linux. 90 // A class to generate events on Linux.
91 class InputInjectorLinux : public InputInjector { 91 class InputInjectorLinux : public InputInjector {
92 public: 92 public:
93 explicit InputInjectorLinux( 93 explicit InputInjectorLinux(
94 scoped_refptr<base::SingleThreadTaskRunner> task_runner); 94 scoped_refptr<base::SingleThreadTaskRunner> task_runner);
95 virtual ~InputInjectorLinux(); 95 virtual ~InputInjectorLinux();
96 96
97 bool Init(); 97 bool Init();
98 98
99 // Clipboard stub interface. 99 // Clipboard stub interface.
100 virtual void InjectClipboardEvent(const ClipboardEvent& event) OVERRIDE; 100 virtual void InjectClipboardEvent(const ClipboardEvent& event) override;
101 101
102 // InputStub interface. 102 // InputStub interface.
103 virtual void InjectKeyEvent(const KeyEvent& event) OVERRIDE; 103 virtual void InjectKeyEvent(const KeyEvent& event) override;
104 virtual void InjectTextEvent(const TextEvent& event) OVERRIDE; 104 virtual void InjectTextEvent(const TextEvent& event) override;
105 virtual void InjectMouseEvent(const MouseEvent& event) OVERRIDE; 105 virtual void InjectMouseEvent(const MouseEvent& event) override;
106 106
107 // InputInjector interface. 107 // InputInjector interface.
108 virtual void Start( 108 virtual void Start(
109 scoped_ptr<protocol::ClipboardStub> client_clipboard) OVERRIDE; 109 scoped_ptr<protocol::ClipboardStub> client_clipboard) override;
110 110
111 private: 111 private:
112 // The actual implementation resides in InputInjectorLinux::Core class. 112 // The actual implementation resides in InputInjectorLinux::Core class.
113 class Core : public base::RefCountedThreadSafe<Core> { 113 class Core : public base::RefCountedThreadSafe<Core> {
114 public: 114 public:
115 explicit Core(scoped_refptr<base::SingleThreadTaskRunner> task_runner); 115 explicit Core(scoped_refptr<base::SingleThreadTaskRunner> task_runner);
116 116
117 bool Init(); 117 bool Init();
118 118
119 // Mirrors the ClipboardStub interface. 119 // Mirrors the ClipboardStub interface.
(...skipping 485 matching lines...) Expand 10 before | Expand all | Expand 10 after
605 scoped_refptr<base::SingleThreadTaskRunner> main_task_runner, 605 scoped_refptr<base::SingleThreadTaskRunner> main_task_runner,
606 scoped_refptr<base::SingleThreadTaskRunner> ui_task_runner) { 606 scoped_refptr<base::SingleThreadTaskRunner> ui_task_runner) {
607 scoped_ptr<InputInjectorLinux> injector( 607 scoped_ptr<InputInjectorLinux> injector(
608 new InputInjectorLinux(main_task_runner)); 608 new InputInjectorLinux(main_task_runner));
609 if (!injector->Init()) 609 if (!injector->Init())
610 return nullptr; 610 return nullptr;
611 return injector.Pass(); 611 return injector.Pass();
612 } 612 }
613 613
614 } // namespace remoting 614 } // namespace remoting
OLDNEW
« no previous file with comments | « remoting/host/in_memory_host_config.h ('k') | remoting/host/input_injector_mac.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698