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

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

Issue 2723493004: Move FrameHost::m_pageScaleConstraintsSet to Page (Closed)
Patch Set: Rebase Created 3 years, 10 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 32b7bcfaadcab46fa98eecc43278032f78793e25..8fbd28db016790081b5c023837ae682427478ca2 100644
--- a/third_party/WebKit/Source/core/page/Page.h
+++ b/third_party/WebKit/Source/core/page/Page.h
@@ -58,6 +58,7 @@ class EditorClient;
class FocusController;
class Frame;
class FrameHost;
+class PageScaleConstraintsSet;
class PluginData;
class PointerLockController;
class ScopedPageSuspender;
@@ -180,6 +181,9 @@ class CORE_EXPORT Page final : public GarbageCollectedFinalized<Page>,
Deprecation& deprecation() { return m_deprecation; }
HostsUsingFeatures& hostsUsingFeatures() { return m_hostsUsingFeatures; }
+ PageScaleConstraintsSet& pageScaleConstraintsSet();
+ const PageScaleConstraintsSet& pageScaleConstraintsSet() const;
+
void setTabKeyCyclesThroughElements(bool b) {
m_tabKeyCyclesThroughElements = b;
}
@@ -258,6 +262,7 @@ class CORE_EXPORT Page final : public GarbageCollectedFinalized<Page>,
const Member<DragController> m_dragController;
const Member<FocusController> m_focusController;
const Member<ContextMenuController> m_contextMenuController;
+ const std::unique_ptr<PageScaleConstraintsSet> m_pageScaleConstraintsSet;
const Member<PointerLockController> m_pointerLockController;
Member<ScrollingCoordinator> m_scrollingCoordinator;
« 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