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

Unified Diff: third_party/WebKit/Source/core/page/Page.h

Issue 2729603005: Move m_overscrollController to Page (Closed)
Patch Set: Fixed small compile error Created 3 years, 9 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
« no previous file with comments | « third_party/WebKit/Source/core/frame/FrameHost.cpp ('k') | third_party/WebKit/Source/core/page/Page.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/core/page/Page.h
diff --git a/third_party/WebKit/Source/core/page/Page.h b/third_party/WebKit/Source/core/page/Page.h
index 97a9f8c29fd26a24d43f945994f59a9046a1d7e3..d427c88773b640213aff222141815b4b2d3038f3 100644
--- a/third_party/WebKit/Source/core/page/Page.h
+++ b/third_party/WebKit/Source/core/page/Page.h
@@ -60,6 +60,7 @@ class EventHandlerRegistry;
class FocusController;
class Frame;
class FrameHost;
+class OverscrollController;
struct PageScaleConstraints;
class PageScaleConstraintsSet;
class PluginData;
@@ -204,6 +205,9 @@ class CORE_EXPORT Page final : public GarbageCollectedFinalized<Page>,
VisualViewport& visualViewport();
const VisualViewport& visualViewport() const;
+ OverscrollController& overscrollController();
+ const OverscrollController& overscrollController() const;
+
void setTabKeyCyclesThroughElements(bool b) {
m_tabKeyCyclesThroughElements = b;
}
@@ -295,6 +299,7 @@ class CORE_EXPORT Page final : public GarbageCollectedFinalized<Page>,
const Member<TopDocumentRootScrollerController>
m_globalRootScrollerController;
const Member<VisualViewport> m_visualViewport;
+ const Member<OverscrollController> m_overscrollController;
// Typically, the main frame and Page should both be owned by the embedder,
// which must call Page::willBeDestroyed() prior to destroying Page. This
« no previous file with comments | « third_party/WebKit/Source/core/frame/FrameHost.cpp ('k') | third_party/WebKit/Source/core/page/Page.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698