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

Side by Side Diff: remoting/host/video_frame_recorder_host_extension.h

Issue 1547473005: Switch to standard integer types in remoting/host/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 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
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 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 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_HOST_VIDEO_FRAME_RECORDER_HOST_EXTENSION_H_ 5 #ifndef REMOTING_HOST_VIDEO_FRAME_RECORDER_HOST_EXTENSION_H_
6 #define REMOTING_HOST_VIDEO_FRAME_RECORDER_HOST_EXTENSION_H_ 6 #define REMOTING_HOST_VIDEO_FRAME_RECORDER_HOST_EXTENSION_H_
7 7
8 #include <stdint.h>
9
10 #include "base/macros.h"
8 #include "base/memory/scoped_ptr.h" 11 #include "base/memory/scoped_ptr.h"
9 #include "remoting/host/host_extension.h" 12 #include "remoting/host/host_extension.h"
10 13
11 namespace remoting { 14 namespace remoting {
12 15
13 // Extends Chromoting sessions with the ability to record raw frames and 16 // Extends Chromoting sessions with the ability to record raw frames and
14 // download them to the client. This can be used to obtain representative 17 // download them to the client. This can be used to obtain representative
15 // sequences of frames to run tests against. 18 // sequences of frames to run tests against.
16 class VideoFrameRecorderHostExtension : public HostExtension { 19 class VideoFrameRecorderHostExtension : public HostExtension {
17 public: 20 public:
(...skipping 11 matching lines...) Expand all
29 32
30 private: 33 private:
31 int64_t max_content_bytes_; 34 int64_t max_content_bytes_;
32 35
33 DISALLOW_COPY_AND_ASSIGN(VideoFrameRecorderHostExtension); 36 DISALLOW_COPY_AND_ASSIGN(VideoFrameRecorderHostExtension);
34 }; 37 };
35 38
36 } // namespace remoting 39 } // namespace remoting
37 40
38 #endif // REMOTING_HOST_VIDEO_FRAME_RECORDER_HOST_EXTENSION_H_ 41 #endif // REMOTING_HOST_VIDEO_FRAME_RECORDER_HOST_EXTENSION_H_
OLDNEW
« no previous file with comments | « remoting/host/video_frame_recorder.cc ('k') | remoting/host/video_frame_recorder_host_extension.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698