OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 CC_LAYERS_VIDEO_FRAME_PROVIDER_CLIENT_IMPL_H_ | 5 #ifndef CC_LAYERS_VIDEO_FRAME_PROVIDER_CLIENT_IMPL_H_ |
6 #define CC_LAYERS_VIDEO_FRAME_PROVIDER_CLIENT_IMPL_H_ | 6 #define CC_LAYERS_VIDEO_FRAME_PROVIDER_CLIENT_IMPL_H_ |
7 | 7 |
| 8 #include "base/macros.h" |
8 #include "base/memory/ref_counted.h" | 9 #include "base/memory/ref_counted.h" |
9 #include "base/synchronization/lock.h" | 10 #include "base/synchronization/lock.h" |
10 #include "base/threading/thread_checker.h" | 11 #include "base/threading/thread_checker.h" |
11 #include "cc/base/cc_export.h" | 12 #include "cc/base/cc_export.h" |
12 #include "cc/layers/video_frame_provider.h" | 13 #include "cc/layers/video_frame_provider.h" |
13 #include "cc/scheduler/video_frame_controller.h" | 14 #include "cc/scheduler/video_frame_controller.h" |
14 #include "ui/gfx/transform.h" | 15 #include "ui/gfx/transform.h" |
15 | 16 |
16 namespace media { class VideoFrame; } | 17 namespace media { class VideoFrame; } |
17 | 18 |
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
85 base::ThreadChecker thread_checker_; | 86 base::ThreadChecker thread_checker_; |
86 | 87 |
87 gfx::Transform stream_texture_matrix_; | 88 gfx::Transform stream_texture_matrix_; |
88 | 89 |
89 DISALLOW_COPY_AND_ASSIGN(VideoFrameProviderClientImpl); | 90 DISALLOW_COPY_AND_ASSIGN(VideoFrameProviderClientImpl); |
90 }; | 91 }; |
91 | 92 |
92 } // namespace cc | 93 } // namespace cc |
93 | 94 |
94 #endif // CC_LAYERS_VIDEO_FRAME_PROVIDER_CLIENT_IMPL_H_ | 95 #endif // CC_LAYERS_VIDEO_FRAME_PROVIDER_CLIENT_IMPL_H_ |
OLD | NEW |