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/callback.h" | 8 #include "base/callback.h" |
9 #include "base/memory/weak_ptr.h" | 9 #include "base/memory/weak_ptr.h" |
10 #include "base/time/time.h" | 10 #include "base/time/time.h" |
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
75 const std::string& name, | 75 const std::string& name, |
76 scoped_ptr<base::Value> value, | 76 scoped_ptr<base::Value> value, |
77 const base::Callback<void(scoped_ptr<base::Value>)>& callback); | 77 const base::Callback<void(scoped_ptr<base::Value>)>& callback); |
78 bool SendMessageToMicroBenchmark(int id, scoped_ptr<base::Value> value); | 78 bool SendMessageToMicroBenchmark(int id, scoped_ptr<base::Value> value); |
79 void StartCompositor(); | 79 void StartCompositor(); |
80 void SetSurfaceIdNamespace(uint32_t surface_id_namespace); | 80 void SetSurfaceIdNamespace(uint32_t surface_id_namespace); |
81 | 81 |
82 // WebLayerTreeView implementation. | 82 // WebLayerTreeView implementation. |
83 virtual void setRootLayer(const blink::WebLayer& layer); | 83 virtual void setRootLayer(const blink::WebLayer& layer); |
84 virtual void clearRootLayer(); | 84 virtual void clearRootLayer(); |
| 85 virtual void attachCompositorAnimationTimeline( |
| 86 blink::WebCompositorAnimationTimeline* compositor_timeline); |
| 87 virtual void detachCompositorAnimationTimeline( |
| 88 blink::WebCompositorAnimationTimeline* compositor_timeline); |
85 virtual void setViewportSize( | 89 virtual void setViewportSize( |
86 const blink::WebSize& unused_deprecated, | 90 const blink::WebSize& unused_deprecated, |
87 const blink::WebSize& device_viewport_size); | 91 const blink::WebSize& device_viewport_size); |
88 virtual void setViewportSize(const blink::WebSize& device_viewport_size); | 92 virtual void setViewportSize(const blink::WebSize& device_viewport_size); |
89 virtual blink::WebSize layoutViewportSize() const; | 93 virtual blink::WebSize layoutViewportSize() const; |
90 virtual blink::WebSize deviceViewportSize() const; | 94 virtual blink::WebSize deviceViewportSize() const; |
91 virtual blink::WebFloatPoint adjustEventPointForPinchZoom( | 95 virtual blink::WebFloatPoint adjustEventPointForPinchZoom( |
92 const blink::WebFloatPoint& point) const; | 96 const blink::WebFloatPoint& point) const; |
93 virtual void setDeviceScaleFactor(float device_scale); | 97 virtual void setDeviceScaleFactor(float device_scale); |
94 virtual float deviceScaleFactor() const; | 98 virtual float deviceScaleFactor() const; |
(...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
189 | 193 |
190 blink::WebLayoutAndPaintAsyncCallback* layout_and_paint_async_callback_; | 194 blink::WebLayoutAndPaintAsyncCallback* layout_and_paint_async_callback_; |
191 scoped_ptr<cc::CopyOutputRequest> temporary_copy_output_request_; | 195 scoped_ptr<cc::CopyOutputRequest> temporary_copy_output_request_; |
192 | 196 |
193 base::WeakPtrFactory<RenderWidgetCompositor> weak_factory_; | 197 base::WeakPtrFactory<RenderWidgetCompositor> weak_factory_; |
194 }; | 198 }; |
195 | 199 |
196 } // namespace content | 200 } // namespace content |
197 | 201 |
198 #endif // CONTENT_RENDERER_GPU_RENDER_WIDGET_COMPOSITOR_H_ | 202 #endif // CONTENT_RENDERER_GPU_RENDER_WIDGET_COMPOSITOR_H_ |
OLD | NEW |