| Index: third_party/WebKit/Source/core/frame/FrameHost.h
|
| diff --git a/third_party/WebKit/Source/core/frame/FrameHost.h b/third_party/WebKit/Source/core/frame/FrameHost.h
|
| index 8b909f23bd6bd4f772021ff2505edf2044f956bc..060e05685a81b0a709f44e133b19029c4073200f 100644
|
| --- a/third_party/WebKit/Source/core/frame/FrameHost.h
|
| +++ b/third_party/WebKit/Source/core/frame/FrameHost.h
|
| @@ -49,6 +49,7 @@ class OverscrollController;
|
| class Page;
|
| struct PageScaleConstraints;
|
| class PageScaleConstraintsSet;
|
| +class RootScroller;
|
| class Settings;
|
| class TopControls;
|
| class UseCounter;
|
| @@ -91,6 +92,9 @@ public:
|
| // This value does not account for Page zoom, use LocalFrame::devicePixelRatio instead.
|
| float deviceScaleFactor() const;
|
|
|
| + RootScroller* rootScroller();
|
| + const RootScroller* rootScroller() const;
|
| +
|
| TopControls& topControls();
|
| const TopControls& topControls() const;
|
|
|
| @@ -130,6 +134,7 @@ private:
|
| explicit FrameHost(Page&);
|
|
|
| const Member<Page> m_page;
|
| + const Member<RootScroller> m_rootScroller;
|
| const Member<TopControls> m_topControls;
|
| const OwnPtr<PageScaleConstraintsSet> m_pageScaleConstraintsSet;
|
| const Member<VisualViewport> m_visualViewport;
|
|
|