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

Unified Diff: trunk/Source/core/page/Settings.h

Issue 14706011: Revert 150468 "Switching CSS Variables over to RuntimeEnabledFea..." (Closed) Base URL: svn://svn.chromium.org/blink/
Patch Set: Created 7 years, 7 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 | « trunk/Source/core/page/RuntimeEnabledFeatures.in ('k') | trunk/Source/core/page/Settings.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: trunk/Source/core/page/Settings.h
===================================================================
--- trunk/Source/core/page/Settings.h (revision 150485)
+++ trunk/Source/core/page/Settings.h (working copy)
@@ -138,6 +138,9 @@
void setCSSStickyPositionEnabled(bool enabled) { m_cssStickyPositionEnabled = enabled; }
bool cssStickyPositionEnabled() const { return m_cssStickyPositionEnabled; }
+ void setCSSVariablesEnabled(bool enabled) { m_cssVariablesEnabled = enabled; }
+ bool cssVariablesEnabled() const { return m_cssVariablesEnabled; }
+
static void setMockScrollbarsEnabled(bool flag);
static bool mockScrollbarsEnabled();
@@ -180,6 +183,7 @@
unsigned m_fontRenderingMode : 1;
bool m_isCSSCustomFilterEnabled : 1;
bool m_cssStickyPositionEnabled : 1;
+ bool m_cssVariablesEnabled : 1;
bool m_dnsPrefetchingEnabled : 1;
bool m_touchEventEmulationEnabled : 1;
« no previous file with comments | « trunk/Source/core/page/RuntimeEnabledFeatures.in ('k') | trunk/Source/core/page/Settings.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698