| OLD | NEW |
| 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 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_GPU_RENDER_WIDGET_COMPOSITOR_H_ | 5 #ifndef CONTENT_RENDERER_GPU_RENDER_WIDGET_COMPOSITOR_H_ |
| 6 #define CONTENT_RENDERER_GPU_RENDER_WIDGET_COMPOSITOR_H_ | 6 #define CONTENT_RENDERER_GPU_RENDER_WIDGET_COMPOSITOR_H_ |
| 7 | 7 |
| 8 #include <stdint.h> |
| 9 |
| 8 #include "base/callback.h" | 10 #include "base/callback.h" |
| 9 #include "base/memory/weak_ptr.h" | 11 #include "base/memory/weak_ptr.h" |
| 10 #include "base/time/time.h" | 12 #include "base/time/time.h" |
| 11 #include "base/values.h" | 13 #include "base/values.h" |
| 12 #include "cc/input/top_controls_state.h" | 14 #include "cc/input/top_controls_state.h" |
| 13 #include "cc/output/managed_memory_policy.h" | 15 #include "cc/output/managed_memory_policy.h" |
| 14 #include "cc/output/swap_promise.h" | 16 #include "cc/output/swap_promise.h" |
| 15 #include "cc/trees/layer_tree_host_client.h" | 17 #include "cc/trees/layer_tree_host_client.h" |
| 16 #include "cc/trees/layer_tree_host_single_thread_client.h" | 18 #include "cc/trees/layer_tree_host_single_thread_client.h" |
| 17 #include "cc/trees/layer_tree_settings.h" | 19 #include "cc/trees/layer_tree_settings.h" |
| (...skipping 186 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 204 scoped_ptr<cc::CopyOutputRequest> temporary_copy_output_request_; | 206 scoped_ptr<cc::CopyOutputRequest> temporary_copy_output_request_; |
| 205 | 207 |
| 206 cc::RemoteProtoChannel::ProtoReceiver* remote_proto_channel_receiver_; | 208 cc::RemoteProtoChannel::ProtoReceiver* remote_proto_channel_receiver_; |
| 207 | 209 |
| 208 base::WeakPtrFactory<RenderWidgetCompositor> weak_factory_; | 210 base::WeakPtrFactory<RenderWidgetCompositor> weak_factory_; |
| 209 }; | 211 }; |
| 210 | 212 |
| 211 } // namespace content | 213 } // namespace content |
| 212 | 214 |
| 213 #endif // CONTENT_RENDERER_GPU_RENDER_WIDGET_COMPOSITOR_H_ | 215 #endif // CONTENT_RENDERER_GPU_RENDER_WIDGET_COMPOSITOR_H_ |
| OLD | NEW |