diff options
Diffstat (limited to 'content/renderer/render_view_impl.h')
-rw-r--r-- | content/renderer/render_view_impl.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/content/renderer/render_view_impl.h b/content/renderer/render_view_impl.h index ddd1283..08402a6 100644 --- a/content/renderer/render_view_impl.h +++ b/content/renderer/render_view_impl.h @@ -517,6 +517,7 @@ class CONTENT_EXPORT RenderViewImpl // date and time input fields using MULTIPLE_FIELDS_UI virtual bool openDateTimeChooser(const WebKit::WebDateTimeChooserParams&, WebKit::WebDateTimeChooserCompletion*); + virtual void didScrollWithKeyboard(const WebKit::WebSize& delta); #endif // WebKit::WebFrameClient implementation ------------------------------------- @@ -1358,6 +1359,12 @@ class CONTENT_EXPORT RenderViewImpl // much about leaks. IDMap<ContextMenuClient, IDMapExternalPointer> pending_context_menus_; +#if defined(OS_ANDROID) + // Cache the old top controls state constraints. Used when updating + // current value only without altering the constraints. + cc::TopControlsState top_controls_constraints_; +#endif + // View ---------------------------------------------------------------------- // Cache the preferred size of the page in order to prevent sending the IPC |