Roll src/third_party/WebKit b41a10f:afd8afd (svn 202201:202202)
[chromium-blink-merge.git] / remoting / host / video_frame_recorder_host_extension.h
blobf35ec023ca267c83bf77987a0f2468dde9454e89
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.
5 #ifndef REMOTING_HOST_VIDEO_FRAME_RECORDER_HOST_EXTENSION_H_
6 #define REMOTING_HOST_VIDEO_FRAME_RECORDER_HOST_EXTENSION_H_
8 #include "base/memory/scoped_ptr.h"
9 #include "remoting/host/host_extension.h"
11 namespace remoting {
13 // Extends Chromoting sessions with the ability to record raw frames and
14 // download them to the client. This can be used to obtain representative
15 // sequences of frames to run tests against.
16 class VideoFrameRecorderHostExtension : public HostExtension {
17 public:
18 VideoFrameRecorderHostExtension();
19 ~VideoFrameRecorderHostExtension() override;
21 // Sets the maximum number of bytes that each session may record.
22 void SetMaxContentBytes(int64_t max_content_bytes);
24 // remoting::HostExtension interface.
25 std::string capability() const override;
26 scoped_ptr<HostExtensionSession> CreateExtensionSession(
27 ClientSessionControl* client_session,
28 protocol::ClientStub* client_stub) override;
30 private:
31 int64_t max_content_bytes_;
33 DISALLOW_COPY_AND_ASSIGN(VideoFrameRecorderHostExtension);
36 } // namespace remoting
38 #endif // REMOTING_HOST_VIDEO_FRAME_RECORDER_HOST_EXTENSION_H_