Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(500)

Unified Diff: third_party/WebKit/Source/core/frame/FrameHost.h

Issue 2285253003: Move TopDocumentRootScrollerController to a separate object on FrameHost (Closed)
Patch Set: None Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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 300f2040235b7a3dc1a3210cecd075689dcbe19f..5480fad5c88d57db5353ede1fd58634989d04445 100644
--- a/third_party/WebKit/Source/core/frame/FrameHost.h
+++ b/third_party/WebKit/Source/core/frame/FrameHost.h
@@ -50,6 +50,7 @@ struct PageScaleConstraints;
class PageScaleConstraintsSet;
class Settings;
class TopControls;
+class TopDocumentRootScrollerController;
class UseCounter;
class Visitor;
class VisualViewport;
@@ -116,6 +117,8 @@ public:
ConsoleMessageStorage& consoleMessageStorage();
const ConsoleMessageStorage& consoleMessageStorage() const;
+ TopDocumentRootScrollerController& globalRootScrollerController() const;
+
DECLARE_TRACE();
// Don't allow more than a certain number of frames in a page.
@@ -140,6 +143,7 @@ private:
const Member<OverscrollController> m_overscrollController;
const Member<EventHandlerRegistry> m_eventHandlerRegistry;
const Member<ConsoleMessageStorage> m_consoleMessageStorage;
+ Member<TopDocumentRootScrollerController> m_globalRootScrollerController;
tdresser 2016/08/30 15:05:30 Should this be const?
bokan 2016/08/30 16:13:39 Done.
AtomicString m_overrideEncoding;
int m_subframeCount;

Powered by Google App Engine
This is Rietveld 408576698