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

Side by Side Diff: remoting/capturer/capture_data.h

Issue 11470028: Move screen capturers to remoting/capturer. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 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 | Annotate | Revision Log
« no previous file with comments | « remoting/capturer/DEPS ('k') | remoting/capturer/capture_data.cc » ('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 (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_BASE_CAPTURE_DATA_H_ 5 #ifndef REMOTING_CAPTURER_CAPTURE_DATA_H_
6 #define REMOTING_BASE_CAPTURE_DATA_H_ 6 #define REMOTING_CAPTURER_CAPTURE_DATA_H_
7 7
8 #include <vector> 8 #include <vector>
9 9
10 #include "base/basictypes.h" 10 #include "base/basictypes.h"
11 #include "base/memory/ref_counted.h" 11 #include "base/memory/ref_counted.h"
12 #include "media/base/video_frame.h" 12 #include "media/base/video_frame.h"
13 #include "remoting/base/shared_buffer.h" 13 #include "remoting/capturer/shared_buffer.h"
14 #include "third_party/skia/include/core/SkRegion.h" 14 #include "third_party/skia/include/core/SkRegion.h"
15 15
16 namespace remoting { 16 namespace remoting {
17 17
18 class SharedBuffer; 18 class SharedBuffer;
19 19
20 struct DataPlanes { 20 struct DataPlanes {
21 DataPlanes(); 21 DataPlanes();
22 22
23 static const int kPlaneCount = 3; 23 static const int kPlaneCount = 3;
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after
89 int64 client_sequence_number_; 89 int64 client_sequence_number_;
90 90
91 // DPI for this frame. 91 // DPI for this frame.
92 SkIPoint dpi_; 92 SkIPoint dpi_;
93 93
94 scoped_refptr<SharedBuffer> shared_buffer_; 94 scoped_refptr<SharedBuffer> shared_buffer_;
95 }; 95 };
96 96
97 } // namespace remoting 97 } // namespace remoting
98 98
99 #endif // REMOTING_BASE_CAPTURE_DATA_H_ 99 #endif // REMOTING_CAPTURER_CAPTURE_DATA_H_
OLDNEW
« no previous file with comments | « remoting/capturer/DEPS ('k') | remoting/capturer/capture_data.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698