| 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 "base/memory/weak_ptr.h" | 8 #include "base/memory/weak_ptr.h" |
| 9 #include "base/time.h" | 9 #include "base/time.h" |
| 10 #include "cc/debug/rendering_stats.h" | 10 #include "cc/debug/rendering_stats.h" |
| 11 #include "cc/input/top_controls_state.h" | 11 #include "cc/input/top_controls_state.h" |
| 12 #include "cc/trees/layer_tree_host_client.h" | 12 #include "cc/trees/layer_tree_host_client.h" |
| 13 #include "cc/trees/layer_tree_settings.h" | 13 #include "cc/trees/layer_tree_settings.h" |
| 14 #include "skia/ext/refptr.h" | 14 #include "skia/ext/refptr.h" |
| 15 #include "third_party/WebKit/Source/Platform/chromium/public/WebLayerTreeView.h" | 15 #include "third_party/WebKit/public/platform/WebLayerTreeView.h" |
| 16 #include "ui/gfx/rect.h" | 16 #include "ui/gfx/rect.h" |
| 17 | 17 |
| 18 class SkPicture; | 18 class SkPicture; |
| 19 | 19 |
| 20 namespace cc { | 20 namespace cc { |
| 21 class InputHandler; | 21 class InputHandler; |
| 22 class LayerTreeHost; | 22 class LayerTreeHost; |
| 23 struct LatencyInfo; | 23 struct LatencyInfo; |
| 24 } | 24 } |
| 25 | 25 |
| (...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 113 | 113 |
| 114 bool threaded_; | 114 bool threaded_; |
| 115 bool suppress_schedule_composite_; | 115 bool suppress_schedule_composite_; |
| 116 RenderWidget* widget_; | 116 RenderWidget* widget_; |
| 117 scoped_ptr<cc::LayerTreeHost> layer_tree_host_; | 117 scoped_ptr<cc::LayerTreeHost> layer_tree_host_; |
| 118 }; | 118 }; |
| 119 | 119 |
| 120 } // namespace content | 120 } // namespace content |
| 121 | 121 |
| 122 #endif // CONTENT_RENDERER_GPU_RENDER_WIDGET_COMPOSITOR_H_ | 122 #endif // CONTENT_RENDERER_GPU_RENDER_WIDGET_COMPOSITOR_H_ |
| OLD | NEW |