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 ANDROID_WEBVIEW_BROWSER_BROWSER_VIEW_RENDERER_H_ | 5 #ifndef ANDROID_WEBVIEW_BROWSER_BROWSER_VIEW_RENDERER_H_ |
6 #define ANDROID_WEBVIEW_BROWSER_BROWSER_VIEW_RENDERER_H_ | 6 #define ANDROID_WEBVIEW_BROWSER_BROWSER_VIEW_RENDERER_H_ |
7 | 7 |
8 #include <stddef.h> | 8 #include <stddef.h> |
9 | 9 |
10 #include <map> | 10 #include <map> |
(...skipping 120 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
131 const gfx::Vector2dF& current_fling_velocity) override; | 131 const gfx::Vector2dF& current_fling_velocity) override; |
132 | 132 |
133 // CompositorFrameProducer overrides | 133 // CompositorFrameProducer overrides |
134 void OnParentDrawConstraintsUpdated( | 134 void OnParentDrawConstraintsUpdated( |
135 CompositorFrameConsumer* compositor_frame_consumer) override; | 135 CompositorFrameConsumer* compositor_frame_consumer) override; |
136 void RemoveCompositorFrameConsumer( | 136 void RemoveCompositorFrameConsumer( |
137 CompositorFrameConsumer* compositor_frame_consumer) override; | 137 CompositorFrameConsumer* compositor_frame_consumer) override; |
138 | 138 |
139 void SetActiveCompositorID(const CompositorID& compositor_id); | 139 void SetActiveCompositorID(const CompositorID& compositor_id); |
140 | 140 |
| 141 // Visible for testing. |
| 142 content::SynchronousCompositor* GetActiveCompositorForTesting() const { |
| 143 return compositor_; |
| 144 } |
| 145 |
141 private: | 146 private: |
142 void SetTotalRootLayerScrollOffset(const gfx::Vector2dF& new_value_dip); | 147 void SetTotalRootLayerScrollOffset(const gfx::Vector2dF& new_value_dip); |
143 bool CanOnDraw(); | 148 bool CanOnDraw(); |
144 bool CompositeSW(SkCanvas* canvas); | 149 bool CompositeSW(SkCanvas* canvas); |
145 std::unique_ptr<base::trace_event::ConvertableToTraceFormat> | 150 std::unique_ptr<base::trace_event::ConvertableToTraceFormat> |
146 RootLayerStateAsValue(const gfx::Vector2dF& total_scroll_offset_dip, | 151 RootLayerStateAsValue(const gfx::Vector2dF& total_scroll_offset_dip, |
147 const gfx::SizeF& scrollable_size_dip); | 152 const gfx::SizeF& scrollable_size_dip); |
148 | 153 |
149 void ReturnUnusedResource(std::unique_ptr<ChildFrame> frame); | 154 void ReturnUnusedResource(std::unique_ptr<ChildFrame> frame); |
150 void ReturnResourceFromParent( | 155 void ReturnResourceFromParent( |
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
215 gfx::Vector2dF overscroll_rounding_error_; | 220 gfx::Vector2dF overscroll_rounding_error_; |
216 | 221 |
217 ParentCompositorDrawConstraints external_draw_constraints_; | 222 ParentCompositorDrawConstraints external_draw_constraints_; |
218 | 223 |
219 DISALLOW_COPY_AND_ASSIGN(BrowserViewRenderer); | 224 DISALLOW_COPY_AND_ASSIGN(BrowserViewRenderer); |
220 }; | 225 }; |
221 | 226 |
222 } // namespace android_webview | 227 } // namespace android_webview |
223 | 228 |
224 #endif // ANDROID_WEBVIEW_BROWSER_BROWSER_VIEW_RENDERER_H_ | 229 #endif // ANDROID_WEBVIEW_BROWSER_BROWSER_VIEW_RENDERER_H_ |
OLD | NEW |