OLD | NEW |
---|---|
(Empty) | |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | |
2 // Use of this source code is governed by a BSD-style license that can be | |
3 // found in the LICENSE file. | |
4 | |
5 #ifndef REMOTING_HOST_SINGLE_WINDOW_INPUT_INJECTOR_H_ | |
6 #define REMOTING_HOST_SINGLE_WINDOW_INPUT_INJECTOR_H_ | |
7 | |
8 #include "base/memory/ref_counted.h" | |
Lambros
2014/08/05 22:47:25
Many of these headers aren't needed.
Here, you ju
ronakvora do not use
2014/08/06 20:56:19
Done.
| |
9 #include "base/memory/scoped_ptr.h" | |
10 #include "remoting/host/input_injector.h" | |
11 #include "remoting/protocol/clipboard_stub.h" | |
12 #include "remoting/protocol/input_stub.h" | |
13 #include "third_party/webrtc/modules/desktop_capture/desktop_capture_types.h" | |
14 | |
15 namespace base { | |
16 class SingleThreadTaskRunner; | |
Lambros
2014/08/05 22:47:25
Remove this.
ronakvora do not use
2014/08/06 20:56:19
Done.
| |
17 } // namespace base | |
18 | |
19 namespace remoting { | |
20 | |
21 class SingleWindowInputInjector : public InputInjector { | |
Lambros
2014/08/05 22:47:25
Please add a comment here explaining the purpose o
ronakvora do not use
2014/08/06 20:56:19
Done.
| |
22 public: | |
23 static scoped_ptr<InputInjector> Create( | |
24 webrtc::WindowId window_id, | |
25 scoped_ptr<InputInjector> input_injector); | |
Wez
2014/08/06 04:10:16
nit: Either clarify that |input_injector| normally
ronakvora do not use
2014/08/06 20:56:19
Done.
| |
26 }; | |
27 | |
28 } // namespace remoting | |
29 | |
30 #endif // REMOTING_HOST_SINGLE_WINDOW_INPUT_INJECTOR_H_ | |
OLD | NEW |