| Index: trunk/src/content/renderer/gpu/render_widget_compositor.h
|
| ===================================================================
|
| --- trunk/src/content/renderer/gpu/render_widget_compositor.h (revision 287765)
|
| +++ trunk/src/content/renderer/gpu/render_widget_compositor.h (working copy)
|
| @@ -44,7 +44,9 @@
|
| virtual ~RenderWidgetCompositor();
|
|
|
| const base::WeakPtr<cc::InputHandler>& GetInputHandler();
|
| + void SetSuppressScheduleComposite(bool suppress);
|
| bool BeginMainFrameRequested() const;
|
| + void UpdateAnimations(base::TimeTicks time);
|
| void SetNeedsDisplayOnAllLayers();
|
| void SetRasterizeOnlyVisibleContent();
|
| void UpdateTopControlsState(cc::TopControlsState constraints,
|
| @@ -141,6 +143,7 @@
|
| virtual void RateLimitSharedMainThreadContext() OVERRIDE;
|
|
|
| // cc::LayerTreeHostSingleThreadClient implementation.
|
| + virtual void ScheduleComposite() OVERRIDE;
|
| virtual void ScheduleAnimation() OVERRIDE;
|
| virtual void DidPostSwapBuffers() OVERRIDE;
|
| virtual void DidAbortSwapBuffers() OVERRIDE;
|
| @@ -151,6 +154,7 @@
|
| void Initialize(cc::LayerTreeSettings settings);
|
|
|
| bool threaded_;
|
| + bool suppress_schedule_composite_;
|
| RenderWidget* widget_;
|
| scoped_ptr<cc::LayerTreeHost> layer_tree_host_;
|
| };
|
|
|