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

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

Issue 2176443002: Add client and host dispatchers for video_stats channel to send video stats from host to client. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@simple_channel
Patch Set: . Created 4 years, 5 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
(Empty)
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
3 // found in the LICENSE file.
4
5 #ifndef REMOTING_PROTOCOL_HOST_VIDEO_STATE_DISPATCHER_H_
6 #define REMOTING_PROTOCOL_HOST_VIDEO_STATE_DISPATCHER_H_
7
8 #include "base/compiler_specific.h"
9 #include "base/macros.h"
10 #include "remoting/protocol/channel_dispatcher_base.h"
11 #include "remoting/protocol/video_stats_stub.h"
12
13 namespace remoting {
14 namespace protocol {
15
16 class HostVideoStatsDispatcher : public ChannelDispatcherBase,
17 public VideoStatsStub {
18 public:
19 explicit HostVideoStatsDispatcher(const std::string& stream_name);
20 ~HostVideoStatsDispatcher() override;
21
22 // VideoStatsStub interface.
23 void OnVideoFrameStats(uint32_t frame_id,
24 const HostFrameStats& frame_stats) override;
25
26 private:
27 void OnIncomingMessage(std::unique_ptr<CompoundBuffer> message) override;
28
29 DISALLOW_COPY_AND_ASSIGN(HostVideoStatsDispatcher);
30 };
31
32 } // namespace protocol
33 } // namespace remoting
34
35 #endif // REMOTING_PROTOCOL_HOST_VIDEO_STATE_DISPATCHER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698