OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 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_PUBLIC_BROWSER_ANDROID_SYNCHRONOUS_COMPOSITOR_CLIENT_H_ | 5 #ifndef CONTENT_PUBLIC_BROWSER_ANDROID_SYNCHRONOUS_COMPOSITOR_CLIENT_H_ |
6 #define CONTENT_PUBLIC_BROWSER_ANDROID_SYNCHRONOUS_COMPOSITOR_CLIENT_H_ | 6 #define CONTENT_PUBLIC_BROWSER_ANDROID_SYNCHRONOUS_COMPOSITOR_CLIENT_H_ |
7 | 7 |
8 #include "base/basictypes.h" | 8 #include "base/basictypes.h" |
9 #include "ui/gfx/geometry/size_f.h" | 9 #include "ui/gfx/geometry/size_f.h" |
10 #include "ui/gfx/vector2d_f.h" | 10 #include "ui/gfx/vector2d_f.h" |
11 | 11 |
12 namespace content { | 12 namespace content { |
13 | 13 |
14 class SynchronousCompositor; | 14 class SynchronousCompositor; |
15 | 15 |
16 class SynchronousCompositorClient { | 16 class SynchronousCompositorClient { |
17 public: | 17 public: |
18 // Indication to the client that |compositor| is now initialized on the | 18 // Indication to the client that |compositor| is now initialized on the |
19 // compositor thread, and open for business. | 19 // compositor thread, and open for business. |
20 virtual void DidInitializeCompositor(SynchronousCompositor* compositor) = 0; | 20 virtual void DidInitializeCompositor(SynchronousCompositor* compositor) = 0; |
21 | 21 |
22 // Indication to the client that |compositor| is going out of scope, and | 22 // Indication to the client that |compositor| is going out of scope, and |
23 // must not be accessed within or after this call. | 23 // must not be accessed within or after this call. |
24 // NOTE if the client goes away before the compositor it must call | 24 // NOTE if the client goes away before the compositor it must call |
25 // SynchronousCompositor::SetClient(NULL) to release the back pointer. | 25 // SynchronousCompositor::SetClient(NULL) to release the back pointer. |
26 virtual void DidDestroyCompositor(SynchronousCompositor* compositor) = 0; | 26 virtual void DidDestroyCompositor(SynchronousCompositor* compositor) = 0; |
27 | 27 |
28 // See LayerScrollOffsetDelegate for details. | 28 // See LayerScrollOffsetDelegate for details. |
29 virtual void SetMaxRootLayerScrollOffset( | |
30 gfx::Vector2dF max_scroll_offset) = 0; | |
31 virtual void SetTotalRootLayerScrollOffset(gfx::Vector2dF new_value) = 0; | |
32 virtual gfx::Vector2dF GetTotalRootLayerScrollOffset() = 0; | 29 virtual gfx::Vector2dF GetTotalRootLayerScrollOffset() = 0; |
| 30 virtual void UpdateRootLayerState(const gfx::Vector2dF& total_scroll_offset, |
| 31 const gfx::Vector2dF& max_scroll_offset, |
| 32 const gfx::SizeF& scrollable_size, |
| 33 float page_scale_factor, |
| 34 float min_page_scale_factor, |
| 35 float max_page_scale_factor) = 0; |
33 virtual bool IsExternalFlingActive() const = 0; | 36 virtual bool IsExternalFlingActive() const = 0; |
34 virtual void SetRootLayerPageScaleFactorAndLimits( | |
35 float page_scale_factor, | |
36 float min_page_scale_factor, | |
37 float max_page_scale_factor) = 0; | |
38 virtual void SetRootLayerScrollableSize(gfx::SizeF scrollable_size) = 0; | |
39 | 37 |
40 virtual void DidOverscroll(gfx::Vector2dF accumulated_overscroll, | 38 virtual void DidOverscroll(gfx::Vector2dF accumulated_overscroll, |
41 gfx::Vector2dF latest_overscroll_delta, | 39 gfx::Vector2dF latest_overscroll_delta, |
42 gfx::Vector2dF current_fling_velocity) = 0; | 40 gfx::Vector2dF current_fling_velocity) = 0; |
43 | 41 |
44 // When true, should periodically call | 42 // When true, should periodically call |
45 // SynchronousCompositorOutputSurface::DemandDrawHw. Note that this value | 43 // SynchronousCompositorOutputSurface::DemandDrawHw. Note that this value |
46 // can change inside DemandDrawHw call. | 44 // can change inside DemandDrawHw call. |
47 virtual void SetContinuousInvalidate(bool invalidate) = 0; | 45 virtual void SetContinuousInvalidate(bool invalidate) = 0; |
48 | 46 |
49 virtual void DidUpdateContent() = 0; | 47 virtual void DidUpdateContent() = 0; |
50 | 48 |
51 protected: | 49 protected: |
52 SynchronousCompositorClient() {} | 50 SynchronousCompositorClient() {} |
53 virtual ~SynchronousCompositorClient() {} | 51 virtual ~SynchronousCompositorClient() {} |
54 | 52 |
55 private: | 53 private: |
56 DISALLOW_COPY_AND_ASSIGN(SynchronousCompositorClient); | 54 DISALLOW_COPY_AND_ASSIGN(SynchronousCompositorClient); |
57 }; | 55 }; |
58 | 56 |
59 } // namespace content | 57 } // namespace content |
60 | 58 |
61 #endif // CONTENT_PUBLIC_BROWSER_ANDROID_SYNCHRONOUS_COMPOSITOR_CLIENT_H_ | 59 #endif // CONTENT_PUBLIC_BROWSER_ANDROID_SYNCHRONOUS_COMPOSITOR_CLIENT_H_ |
OLD | NEW |