| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 UI_COMPOSITOR_COMPOSITOR_H_ | 5 #ifndef UI_COMPOSITOR_COMPOSITOR_H_ |
| 6 #define UI_COMPOSITOR_COMPOSITOR_H_ | 6 #define UI_COMPOSITOR_COMPOSITOR_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "base/containers/hash_tables.h" | 10 #include "base/containers/hash_tables.h" |
| (...skipping 226 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 237 void OnSwapBuffersComplete(); | 237 void OnSwapBuffersComplete(); |
| 238 | 238 |
| 239 // Signals swap has aborted (e.g. lost context). | 239 // Signals swap has aborted (e.g. lost context). |
| 240 void OnSwapBuffersAborted(); | 240 void OnSwapBuffersAborted(); |
| 241 | 241 |
| 242 // LayerTreeHostClient implementation. | 242 // LayerTreeHostClient implementation. |
| 243 void WillBeginMainFrame() override {} | 243 void WillBeginMainFrame() override {} |
| 244 void DidBeginMainFrame() override {} | 244 void DidBeginMainFrame() override {} |
| 245 void BeginMainFrame(const cc::BeginFrameArgs& args) override; | 245 void BeginMainFrame(const cc::BeginFrameArgs& args) override; |
| 246 void Layout() override; | 246 void Layout() override; |
| 247 void ApplyViewportDeltas(const gfx::Vector2d& inner_delta, | 247 void ApplyViewportDeltas(const gfx::Vector2dF& inner_delta, |
| 248 const gfx::Vector2d& outer_delta, | 248 const gfx::Vector2dF& outer_delta, |
| 249 const gfx::Vector2dF& elastic_overscroll_delta, | 249 const gfx::Vector2dF& elastic_overscroll_delta, |
| 250 float page_scale, | 250 float page_scale, |
| 251 float top_controls_delta) override {} | 251 float top_controls_delta) override {} |
| 252 void ApplyViewportDeltas(const gfx::Vector2d& scroll_delta, | 252 void ApplyViewportDeltas(const gfx::Vector2d& scroll_delta, |
| 253 float page_scale, | 253 float page_scale, |
| 254 float top_controls_delta) override {} | 254 float top_controls_delta) override {} |
| 255 void RequestNewOutputSurface() override; | 255 void RequestNewOutputSurface() override; |
| 256 void DidInitializeOutputSurface() override; | 256 void DidInitializeOutputSurface() override; |
| 257 void DidFailToInitializeOutputSurface() override; | 257 void DidFailToInitializeOutputSurface() override; |
| 258 void WillCommit() override {} | 258 void WillCommit() override {} |
| (...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 330 LayerAnimatorCollection layer_animator_collection_; | 330 LayerAnimatorCollection layer_animator_collection_; |
| 331 | 331 |
| 332 base::WeakPtrFactory<Compositor> weak_ptr_factory_; | 332 base::WeakPtrFactory<Compositor> weak_ptr_factory_; |
| 333 | 333 |
| 334 DISALLOW_COPY_AND_ASSIGN(Compositor); | 334 DISALLOW_COPY_AND_ASSIGN(Compositor); |
| 335 }; | 335 }; |
| 336 | 336 |
| 337 } // namespace ui | 337 } // namespace ui |
| 338 | 338 |
| 339 #endif // UI_COMPOSITOR_COMPOSITOR_H_ | 339 #endif // UI_COMPOSITOR_COMPOSITOR_H_ |
| OLD | NEW |