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 135 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
146 float top_controls_delta) override; | 146 float top_controls_delta) override; |
147 void RequestNewOutputSurface() override; | 147 void RequestNewOutputSurface() override; |
148 void DidInitializeOutputSurface() override; | 148 void DidInitializeOutputSurface() override; |
149 void DidFailToInitializeOutputSurface() override; | 149 void DidFailToInitializeOutputSurface() override; |
150 void WillCommit() override; | 150 void WillCommit() override; |
151 void DidCommit() override; | 151 void DidCommit() override; |
152 void DidCommitAndDrawFrame() override; | 152 void DidCommitAndDrawFrame() override; |
153 void DidCompleteSwapBuffers() override; | 153 void DidCompleteSwapBuffers() override; |
154 void DidCompletePageScaleAnimation() override; | 154 void DidCompletePageScaleAnimation() override; |
155 void RateLimitSharedMainThreadContext() override; | 155 void RateLimitSharedMainThreadContext() override; |
| 156 SkTypeface* GetHudTypeface() override; |
156 | 157 |
157 // cc::LayerTreeHostSingleThreadClient implementation. | 158 // cc::LayerTreeHostSingleThreadClient implementation. |
158 void ScheduleAnimation() override; | 159 void ScheduleAnimation() override; |
159 void DidPostSwapBuffers() override; | 160 void DidPostSwapBuffers() override; |
160 void DidAbortSwapBuffers() override; | 161 void DidAbortSwapBuffers() override; |
161 | 162 |
162 enum { | 163 enum { |
163 OUTPUT_SURFACE_RETRIES_BEFORE_FALLBACK = 4, | 164 OUTPUT_SURFACE_RETRIES_BEFORE_FALLBACK = 4, |
164 MAX_OUTPUT_SURFACE_RETRIES = 5, | 165 MAX_OUTPUT_SURFACE_RETRIES = 5, |
165 }; | 166 }; |
(...skipping 12 matching lines...) Expand all Loading... |
178 scoped_ptr<cc::LayerTreeHost> layer_tree_host_; | 179 scoped_ptr<cc::LayerTreeHost> layer_tree_host_; |
179 | 180 |
180 scoped_ptr<cc::CopyOutputRequest> temporary_copy_output_request_; | 181 scoped_ptr<cc::CopyOutputRequest> temporary_copy_output_request_; |
181 | 182 |
182 base::WeakPtrFactory<RenderWidgetCompositor> weak_factory_; | 183 base::WeakPtrFactory<RenderWidgetCompositor> weak_factory_; |
183 }; | 184 }; |
184 | 185 |
185 } // namespace content | 186 } // namespace content |
186 | 187 |
187 #endif // CONTENT_RENDERER_GPU_RENDER_WIDGET_COMPOSITOR_H_ | 188 #endif // CONTENT_RENDERER_GPU_RENDER_WIDGET_COMPOSITOR_H_ |
OLD | NEW |