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

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

Issue 2538183002: remoting: Cleanup class/struct fwd declarations (Closed)
Patch Set: Created 4 years 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/protocol/client_control_dispatcher.h ('k') | remoting/protocol/connection_to_client.h » ('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 2016 The Chromium Authors. All rights reserved. 1 // Copyright 2016 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_VIDEO_STATE_DISPATCHER_H_ 5 #ifndef REMOTING_PROTOCOL_CLIENT_VIDEO_STATE_DISPATCHER_H_
6 #define REMOTING_PROTOCOL_CLIENT_VIDEO_STATE_DISPATCHER_H_ 6 #define REMOTING_PROTOCOL_CLIENT_VIDEO_STATE_DISPATCHER_H_
7 7
8 #include <list> 8 #include <list>
9 9
10 #include "base/compiler_specific.h" 10 #include "base/compiler_specific.h"
11 #include "base/macros.h" 11 #include "base/macros.h"
12 #include "base/memory/weak_ptr.h" 12 #include "base/memory/weak_ptr.h"
13 #include "remoting/base/constants.h" 13 #include "remoting/base/constants.h"
14 #include "remoting/protocol/channel_dispatcher_base.h" 14 #include "remoting/protocol/channel_dispatcher_base.h"
15 #include "third_party/webrtc/modules/desktop_capture/desktop_geometry.h" 15 #include "third_party/webrtc/modules/desktop_capture/desktop_geometry.h"
16 16
17 namespace remoting { 17 namespace remoting {
18 namespace protocol { 18 namespace protocol {
19 19
20 class ClientStub;
21 class VideoStatsStub; 20 class VideoStatsStub;
22 21
23 class ClientVideoStatsDispatcher : public ChannelDispatcherBase { 22 class ClientVideoStatsDispatcher : public ChannelDispatcherBase {
24 public: 23 public:
25 ClientVideoStatsDispatcher(const std::string& stream_name, 24 ClientVideoStatsDispatcher(const std::string& stream_name,
26 VideoStatsStub* video_stats_stub); 25 VideoStatsStub* video_stats_stub);
27 ~ClientVideoStatsDispatcher() override; 26 ~ClientVideoStatsDispatcher() override;
28 27
29 private: 28 private:
30 void OnIncomingMessage(std::unique_ptr<CompoundBuffer> message) override; 29 void OnIncomingMessage(std::unique_ptr<CompoundBuffer> message) override;
31 30
32 VideoStatsStub* video_stats_stub_; 31 VideoStatsStub* video_stats_stub_;
33 32
34 DISALLOW_COPY_AND_ASSIGN(ClientVideoStatsDispatcher); 33 DISALLOW_COPY_AND_ASSIGN(ClientVideoStatsDispatcher);
35 }; 34 };
36 35
37 } // namespace protocol 36 } // namespace protocol
38 } // namespace remoting 37 } // namespace remoting
39 38
40 #endif // REMOTING_PROTOCOL_CLIENT_VIDEO_STATE_DISPATCHER_H_ 39 #endif // REMOTING_PROTOCOL_CLIENT_VIDEO_STATE_DISPATCHER_H_
OLDNEW
« no previous file with comments | « remoting/protocol/client_control_dispatcher.h ('k') | remoting/protocol/connection_to_client.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698