diff options
Diffstat (limited to 'chromium/content/public/browser/android')
-rw-r--r-- | chromium/content/public/browser/android/compositor.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/chromium/content/public/browser/android/compositor.h b/chromium/content/public/browser/android/compositor.h index fd0018b2703..babee38df15 100644 --- a/chromium/content/public/browser/android/compositor.h +++ b/chromium/content/public/browser/android/compositor.h @@ -68,6 +68,9 @@ class CONTENT_EXPORT Compositor { // Set the output surface bounds. virtual void SetWindowBounds(const gfx::Size& size) = 0; + // Return the last size set with |SetWindowBounds|. + virtual const gfx::Size& GetWindowBounds() = 0; + // Set the output surface which the compositor renders into. virtual void SetSurface(jobject surface, bool can_be_used_with_surface_control) = 0; |