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 CONTENT_RENDERER_GPU_COMPOSITOR_OUTPUT_SURFACE_H_ | 5 #ifndef CONTENT_RENDERER_GPU_COMPOSITOR_OUTPUT_SURFACE_H_ |
6 #define CONTENT_RENDERER_GPU_COMPOSITOR_OUTPUT_SURFACE_H_ | 6 #define CONTENT_RENDERER_GPU_COMPOSITOR_OUTPUT_SURFACE_H_ |
7 | 7 |
8 #include "base/basictypes.h" | 8 #include "base/basictypes.h" |
9 #include "base/compiler_specific.h" | 9 #include "base/compiler_specific.h" |
10 #include "base/memory/ref_counted.h" | 10 #include "base/memory/ref_counted.h" |
11 #include "base/memory/scoped_ptr.h" | 11 #include "base/memory/scoped_ptr.h" |
12 #include "base/threading/non_thread_safe.h" | 12 #include "base/threading/non_thread_safe.h" |
13 #include "base/threading/platform_thread.h" | 13 #include "base/threading/platform_thread.h" |
14 #include "base/time.h" | 14 #include "base/time/time.h" |
15 #include "cc/output/begin_frame_args.h" | 15 #include "cc/output/begin_frame_args.h" |
16 #include "cc/output/output_surface.h" | 16 #include "cc/output/output_surface.h" |
17 #include "ipc/ipc_sync_message_filter.h" | 17 #include "ipc/ipc_sync_message_filter.h" |
18 | 18 |
19 namespace base { | 19 namespace base { |
20 class TaskRunner; | 20 class TaskRunner; |
21 } | 21 } |
22 | 22 |
23 namespace IPC { | 23 namespace IPC { |
24 class ForwardingMessageFilter; | 24 class ForwardingMessageFilter; |
(...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
98 scoped_refptr<CompositorOutputSurfaceProxy> output_surface_proxy_; | 98 scoped_refptr<CompositorOutputSurfaceProxy> output_surface_proxy_; |
99 scoped_refptr<IPC::SyncMessageFilter> message_sender_; | 99 scoped_refptr<IPC::SyncMessageFilter> message_sender_; |
100 int routing_id_; | 100 int routing_id_; |
101 bool prefers_smoothness_; | 101 bool prefers_smoothness_; |
102 base::PlatformThreadHandle main_thread_handle_; | 102 base::PlatformThreadHandle main_thread_handle_; |
103 }; | 103 }; |
104 | 104 |
105 } // namespace content | 105 } // namespace content |
106 | 106 |
107 #endif // CONTENT_RENDERER_GPU_COMPOSITOR_OUTPUT_SURFACE_H_ | 107 #endif // CONTENT_RENDERER_GPU_COMPOSITOR_OUTPUT_SURFACE_H_ |
OLD | NEW |