| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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_CLIENT_H_ | 5 #ifndef ANDROID_WEBVIEW_BROWSER_BROWSER_VIEW_RENDERER_CLIENT_H_ |
| 6 #define ANDROID_WEBVIEW_BROWSER_BROWSER_VIEW_RENDERER_CLIENT_H_ | 6 #define ANDROID_WEBVIEW_BROWSER_BROWSER_VIEW_RENDERER_CLIENT_H_ |
| 7 | 7 |
| 8 #include "base/android/scoped_java_ref.h" | 8 #include "base/android/scoped_java_ref.h" |
| 9 #include "ui/gfx/geometry/point.h" | 9 #include "ui/gfx/geometry/point.h" |
| 10 #include "ui/gfx/geometry/size_f.h" | 10 #include "ui/gfx/geometry/size_f.h" |
| 11 #include "ui/gfx/geometry/vector2d_f.h" | 11 #include "ui/gfx/geometry/vector2d_f.h" |
| 12 | 12 |
| 13 namespace android_webview { | 13 namespace android_webview { |
| 14 struct ParentCompositorDrawConstraints; | 14 struct ParentCompositorDrawConstraints; |
| 15 | 15 |
| 16 class BrowserViewRendererClient { | 16 class BrowserViewRendererClient { |
| 17 public: | 17 public: |
| 18 // Request DrawGL to be in called AwDrawGLInfo::kModeProcess type. | 18 // Request DrawGL to be in called AwDrawGLInfo::kModeProcess type. |
| 19 // |wait_for_completion| will cause the call to block until DrawGL has | 19 // |wait_for_completion| will cause the call to block until DrawGL has |
| 20 // happened. The callback may never be made, and the mode may be promoted to | 20 // happened. The callback may never be made, and the mode may be promoted to |
| 21 // kModeDraw. | 21 // kModeDraw. |
| 22 virtual bool RequestDrawGL(bool wait_for_completion) = 0; | 22 virtual bool RequestDrawGL(bool wait_for_completion) = 0; |
| 23 | 23 |
| 24 // Called when a new Picture is available. Needs to be enabled | 24 // Called when a new Picture is available. Needs to be enabled |
| 25 // via the EnableOnNewPicture method. | 25 // via the EnableOnNewPicture method. |
| 26 virtual void OnNewPicture() = 0; | 26 virtual void OnNewPicture() = 0; |
| 27 | 27 |
| 28 // Called to trigger view invalidations. | 28 // Called to trigger view invalidations. |
| 29 // This calls postInvalidateOnAnimation if outside of a vsync, otherwise it | |
| 30 // calls invalidate. | |
| 31 virtual void PostInvalidate() = 0; | 29 virtual void PostInvalidate() = 0; |
| 32 | 30 |
| 33 // Call postInvalidateOnAnimation for invalidations. This is only used to | 31 // Call postInvalidateOnAnimation for invalidations. This is only used to |
| 34 // synchronize draw functor destruction. | 32 // synchronize draw functor destruction. |
| 35 virtual void DetachFunctorFromView() = 0; | 33 virtual void DetachFunctorFromView() = 0; |
| 36 | 34 |
| 37 // Called to get view's absolute location on the screen. | 35 // Called to get view's absolute location on the screen. |
| 38 virtual gfx::Point GetLocationOnScreen() = 0; | 36 virtual gfx::Point GetLocationOnScreen() = 0; |
| 39 | 37 |
| 40 // Try to set the view's scroll offset to |new_value|. | 38 // Try to set the view's scroll offset to |new_value|. |
| (...skipping 22 matching lines...) Expand all Loading... |
| 63 virtual void ParentDrawConstraintsUpdated( | 61 virtual void ParentDrawConstraintsUpdated( |
| 64 const ParentCompositorDrawConstraints& draw_constraints) = 0; | 62 const ParentCompositorDrawConstraints& draw_constraints) = 0; |
| 65 | 63 |
| 66 protected: | 64 protected: |
| 67 virtual ~BrowserViewRendererClient() {} | 65 virtual ~BrowserViewRendererClient() {} |
| 68 }; | 66 }; |
| 69 | 67 |
| 70 } // namespace android_webview | 68 } // namespace android_webview |
| 71 | 69 |
| 72 #endif // ANDROID_WEBVIEW_BROWSER_BROWSER_VIEW_RENDERER_CLIENT_H_ | 70 #endif // ANDROID_WEBVIEW_BROWSER_BROWSER_VIEW_RENDERER_CLIENT_H_ |
| OLD | NEW |