| 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 CONTENT_RENDERER_ANDROID_SYNCHRONOUS_COMPOSITOR_OUTPUT_SURFACE_H_ | 5 #ifndef CONTENT_RENDERER_ANDROID_SYNCHRONOUS_COMPOSITOR_OUTPUT_SURFACE_H_ |
| 6 #define CONTENT_RENDERER_ANDROID_SYNCHRONOUS_COMPOSITOR_OUTPUT_SURFACE_H_ | 6 #define CONTENT_RENDERER_ANDROID_SYNCHRONOUS_COMPOSITOR_OUTPUT_SURFACE_H_ |
| 7 | 7 |
| 8 #include <stddef.h> |
| 9 |
| 8 #include <vector> | 10 #include <vector> |
| 9 | 11 |
| 10 #include "base/basictypes.h" | |
| 11 #include "base/callback.h" | 12 #include "base/callback.h" |
| 12 #include "base/compiler_specific.h" | 13 #include "base/compiler_specific.h" |
| 14 #include "base/macros.h" |
| 13 #include "base/memory/ref_counted.h" | 15 #include "base/memory/ref_counted.h" |
| 14 #include "base/memory/scoped_ptr.h" | 16 #include "base/memory/scoped_ptr.h" |
| 15 #include "base/threading/thread_checker.h" | 17 #include "base/threading/thread_checker.h" |
| 16 #include "cc/output/compositor_frame.h" | 18 #include "cc/output/compositor_frame.h" |
| 17 #include "cc/output/managed_memory_policy.h" | 19 #include "cc/output/managed_memory_policy.h" |
| 18 #include "cc/output/output_surface.h" | 20 #include "cc/output/output_surface.h" |
| 19 #include "ipc/ipc_message.h" | 21 #include "ipc/ipc_message.h" |
| 20 #include "ui/gfx/transform.h" | 22 #include "ui/gfx/transform.h" |
| 21 | 23 |
| 22 namespace cc { | 24 namespace cc { |
| (...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 117 scoped_refptr<FrameSwapMessageQueue> frame_swap_message_queue_; | 119 scoped_refptr<FrameSwapMessageQueue> frame_swap_message_queue_; |
| 118 | 120 |
| 119 base::ThreadChecker thread_checker_; | 121 base::ThreadChecker thread_checker_; |
| 120 | 122 |
| 121 DISALLOW_COPY_AND_ASSIGN(SynchronousCompositorOutputSurface); | 123 DISALLOW_COPY_AND_ASSIGN(SynchronousCompositorOutputSurface); |
| 122 }; | 124 }; |
| 123 | 125 |
| 124 } // namespace content | 126 } // namespace content |
| 125 | 127 |
| 126 #endif // CONTENT_RENDERER_ANDROID_SYNCHRONOUS_COMPOSITOR_OUTPUT_SURFACE_H_ | 128 #endif // CONTENT_RENDERER_ANDROID_SYNCHRONOUS_COMPOSITOR_OUTPUT_SURFACE_H_ |
| OLD | NEW |