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

Side by Side Diff: remoting/protocol/client_event_dispatcher.h

Issue 1864213002: Convert //remoting to use std::unique_ptr (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Mac IWYU Created 4 years, 8 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
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 #ifndef REMOTING_PROTOCOL_CLIENT_EVENT_DISPATCHER_H_ 5 #ifndef REMOTING_PROTOCOL_CLIENT_EVENT_DISPATCHER_H_
6 #define REMOTING_PROTOCOL_CLIENT_EVENT_DISPATCHER_H_ 6 #define REMOTING_PROTOCOL_CLIENT_EVENT_DISPATCHER_H_
7 7
8 #include "base/macros.h" 8 #include "base/macros.h"
9 #include "base/memory/ref_counted.h" 9 #include "base/memory/ref_counted.h"
10 #include "remoting/protocol/channel_dispatcher_base.h" 10 #include "remoting/protocol/channel_dispatcher_base.h"
11 #include "remoting/protocol/input_stub.h" 11 #include "remoting/protocol/input_stub.h"
12 12
13 namespace remoting { 13 namespace remoting {
14 namespace protocol { 14 namespace protocol {
15 15
16 // ClientEventDispatcher manages the event channel on the client 16 // ClientEventDispatcher manages the event channel on the client
17 // side. It implements InputStub for outgoing input messages. 17 // side. It implements InputStub for outgoing input messages.
18 class ClientEventDispatcher : public ChannelDispatcherBase, public InputStub { 18 class ClientEventDispatcher : public ChannelDispatcherBase, public InputStub {
19 public: 19 public:
20 ClientEventDispatcher(); 20 ClientEventDispatcher();
21 ~ClientEventDispatcher() override; 21 ~ClientEventDispatcher() override;
22 22
23 // InputStub implementation. 23 // InputStub implementation.
24 void InjectKeyEvent(const KeyEvent& event) override; 24 void InjectKeyEvent(const KeyEvent& event) override;
25 void InjectTextEvent(const TextEvent& event) override; 25 void InjectTextEvent(const TextEvent& event) override;
26 void InjectMouseEvent(const MouseEvent& event) override; 26 void InjectMouseEvent(const MouseEvent& event) override;
27 void InjectTouchEvent(const TouchEvent& event) override; 27 void InjectTouchEvent(const TouchEvent& event) override;
28 28
29 private: 29 private:
30 void OnIncomingMessage(scoped_ptr<CompoundBuffer> message) override; 30 void OnIncomingMessage(std::unique_ptr<CompoundBuffer> message) override;
31 31
32 DISALLOW_COPY_AND_ASSIGN(ClientEventDispatcher); 32 DISALLOW_COPY_AND_ASSIGN(ClientEventDispatcher);
33 }; 33 };
34 34
35 } // namespace protocol 35 } // namespace protocol
36 } // namespace remoting 36 } // namespace remoting
37 37
38 #endif // REMOTING_PROTOCOL_CLIENT_EVENT_DISPATCHER_H_ 38 #endif // REMOTING_PROTOCOL_CLIENT_EVENT_DISPATCHER_H_
OLDNEW
« no previous file with comments | « remoting/protocol/client_control_dispatcher.cc ('k') | remoting/protocol/client_event_dispatcher.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698