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 28 matching lines...) Expand all Loading... |
39 // Attempt to construct and initialize a compositor instance for the widget | 39 // Attempt to construct and initialize a compositor instance for the widget |
40 // with the given settings. Returns NULL if initialization fails. | 40 // with the given settings. Returns NULL if initialization fails. |
41 static scoped_ptr<RenderWidgetCompositor> Create(RenderWidget* widget, | 41 static scoped_ptr<RenderWidgetCompositor> Create(RenderWidget* widget, |
42 bool threaded); | 42 bool threaded); |
43 | 43 |
44 virtual ~RenderWidgetCompositor(); | 44 virtual ~RenderWidgetCompositor(); |
45 | 45 |
46 const base::WeakPtr<cc::InputHandler>& GetInputHandler(); | 46 const base::WeakPtr<cc::InputHandler>& GetInputHandler(); |
47 void SetSuppressScheduleComposite(bool suppress); | 47 void SetSuppressScheduleComposite(bool suppress); |
48 bool BeginMainFrameRequested() const; | 48 bool BeginMainFrameRequested() const; |
49 void UpdateAnimations(base::TimeTicks time); | |
50 void SetNeedsDisplayOnAllLayers(); | 49 void SetNeedsDisplayOnAllLayers(); |
51 void SetRasterizeOnlyVisibleContent(); | 50 void SetRasterizeOnlyVisibleContent(); |
52 void UpdateTopControlsState(cc::TopControlsState constraints, | 51 void UpdateTopControlsState(cc::TopControlsState constraints, |
53 cc::TopControlsState current, | 52 cc::TopControlsState current, |
54 bool animate); | 53 bool animate); |
55 void SetOverdrawBottomHeight(float overdraw_bottom_height); | 54 void SetOverdrawBottomHeight(float overdraw_bottom_height); |
56 void SetNeedsRedrawRect(gfx::Rect damage_rect); | 55 void SetNeedsRedrawRect(gfx::Rect damage_rect); |
57 // Like setNeedsRedraw but forces the frame to be drawn, without early-outs. | 56 // Like setNeedsRedraw but forces the frame to be drawn, without early-outs. |
58 // Redraw will be forced after the next commit | 57 // Redraw will be forced after the next commit |
59 void SetNeedsForcedRedraw(); | 58 void SetNeedsForcedRedraw(); |
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
131 virtual scoped_ptr<cc::OutputSurface> CreateOutputSurface(bool fallback) | 130 virtual scoped_ptr<cc::OutputSurface> CreateOutputSurface(bool fallback) |
132 OVERRIDE; | 131 OVERRIDE; |
133 virtual void DidInitializeOutputSurface() OVERRIDE; | 132 virtual void DidInitializeOutputSurface() OVERRIDE; |
134 virtual void WillCommit() OVERRIDE; | 133 virtual void WillCommit() OVERRIDE; |
135 virtual void DidCommit() OVERRIDE; | 134 virtual void DidCommit() OVERRIDE; |
136 virtual void DidCommitAndDrawFrame() OVERRIDE; | 135 virtual void DidCommitAndDrawFrame() OVERRIDE; |
137 virtual void DidCompleteSwapBuffers() OVERRIDE; | 136 virtual void DidCompleteSwapBuffers() OVERRIDE; |
138 virtual void RateLimitSharedMainThreadContext() OVERRIDE; | 137 virtual void RateLimitSharedMainThreadContext() OVERRIDE; |
139 | 138 |
140 // cc::LayerTreeHostSingleThreadClient implementation. | 139 // cc::LayerTreeHostSingleThreadClient implementation. |
141 virtual void ScheduleComposite() OVERRIDE; | |
142 virtual void ScheduleAnimation() OVERRIDE; | 140 virtual void ScheduleAnimation() OVERRIDE; |
143 virtual void DidPostSwapBuffers() OVERRIDE; | 141 virtual void DidPostSwapBuffers() OVERRIDE; |
144 virtual void DidAbortSwapBuffers() OVERRIDE; | 142 virtual void DidAbortSwapBuffers() OVERRIDE; |
145 | 143 |
146 private: | 144 private: |
147 RenderWidgetCompositor(RenderWidget* widget, bool threaded); | 145 RenderWidgetCompositor(RenderWidget* widget, bool threaded); |
148 | 146 |
149 void Initialize(cc::LayerTreeSettings settings); | 147 void Initialize(cc::LayerTreeSettings settings); |
150 | 148 |
151 bool threaded_; | 149 bool threaded_; |
152 bool suppress_schedule_composite_; | |
153 RenderWidget* widget_; | 150 RenderWidget* widget_; |
154 scoped_ptr<cc::LayerTreeHost> layer_tree_host_; | 151 scoped_ptr<cc::LayerTreeHost> layer_tree_host_; |
155 }; | 152 }; |
156 | 153 |
157 } // namespace content | 154 } // namespace content |
158 | 155 |
159 #endif // CONTENT_RENDERER_GPU_RENDER_WIDGET_COMPOSITOR_H_ | 156 #endif // CONTENT_RENDERER_GPU_RENDER_WIDGET_COMPOSITOR_H_ |
OLD | NEW |