Chromium Code Reviews| Index: Source/web/WebViewImpl.h |
| diff --git a/Source/web/WebViewImpl.h b/Source/web/WebViewImpl.h |
| index 0db68d6ecdc61129878687dbed3b7c28e71490eb..e2350a95f30d1baab5dc65630cc12103fcd06e04 100644 |
| --- a/Source/web/WebViewImpl.h |
| +++ b/Source/web/WebViewImpl.h |
| @@ -91,6 +91,7 @@ public: |
| virtual void willStartLiveResize() OVERRIDE; |
| virtual void resize(const WebSize&) OVERRIDE; |
| virtual void resizePinchViewport(const WebSize&) OVERRIDE; |
| + virtual void setTopControlsContentOffset(float) OVERRIDE; |
| virtual void willEndLiveResize() OVERRIDE; |
| virtual void willEnterFullScreen() OVERRIDE; |
| virtual void didEnterFullScreen() OVERRIDE; |
| @@ -110,7 +111,7 @@ public: |
| virtual bool handleInputEvent(const WebInputEvent&) OVERRIDE; |
| virtual void setCursorVisibilityState(bool isVisible) OVERRIDE; |
| virtual bool hasTouchEventHandlersAt(const WebPoint&) OVERRIDE; |
| - virtual void applyScrollAndScale(const WebSize&, float) OVERRIDE; |
| + virtual void applyViewportProperties(const WebSize&, float, float) OVERRIDE; |
|
aelias_OOO_until_Jul13
2014/09/03 19:28:42
Please provide names for the arguments since it's
bokan
2014/09/04 23:10:01
Done
|
| virtual void mouseCaptureLost() OVERRIDE; |
| virtual void setFocus(bool enable) OVERRIDE; |
| virtual bool setComposition( |
| @@ -714,6 +715,8 @@ private: |
| float m_zoomFactorOverride; |
| bool m_userGestureObserved; |
| + int m_topControlsLayoutHeight; |
|
aelias_OOO_until_Jul13
2014/09/03 19:28:42
Unused for now, please remove it.
bokan
2014/09/04 23:10:01
Done.
|
| + float m_topControlsContentOffset; |
| }; |
| // We have no ways to check if the specified WebView is an instance of |