OLD | NEW |
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 Loading... |
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_ |
OLD | NEW |