Chromium Code Reviews| Index: Source/core/page/ChromeClient.h |
| diff --git a/Source/core/page/ChromeClient.h b/Source/core/page/ChromeClient.h |
| index 73bc686a75a63c4d05eee302c7146c4ad088398c..9320cd1972c42b23b35ec56db069a1c89e9f6eb6 100644 |
| --- a/Source/core/page/ChromeClient.h |
| +++ b/Source/core/page/ChromeClient.h |
| @@ -50,6 +50,7 @@ class DateTimeChooserClient; |
| class Element; |
| class FileChooser; |
| class Frame; |
| +class FloatPoint; |
| class GraphicsContext; |
| class GraphicsLayer; |
| class GraphicsLayerFactory; |
| @@ -98,6 +99,9 @@ public: |
| virtual Page* createWindow(LocalFrame*, const FrameLoadRequest&, const WindowFeatures&, NavigationPolicy, ShouldSendReferrer) = 0; |
| virtual void show(NavigationPolicy) = 0; |
| + // Pass on values for overscroll glow animation on main thread. |
| + virtual void didOverscroll(FloatSize&, FloatSize&, FloatPoint&, FloatSize&) = 0; |
|
majidvp
2015/05/07 16:35:29
Please use const& here.
MuVen
2015/05/13 16:55:46
Done.
|
| + |
| virtual void setToolbarsVisible(bool) = 0; |
| virtual bool toolbarsVisible() = 0; |