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

Unified Diff: Source/core/page/RuntimeCSSEnabled.cpp

Issue 14178009: Remove CSS_REGIONS compile flag from Blink. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rework patch after https://codereview.chromium.org/14324009 Created 7 years, 8 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: Source/core/page/RuntimeCSSEnabled.cpp
diff --git a/Source/core/page/RuntimeCSSEnabled.cpp b/Source/core/page/RuntimeCSSEnabled.cpp
index 7eb748686207544db85f803515184ffbc9cf37f3..80bdfafda5fb5f636c272d27aa164aba9afce1ea 100644
--- a/Source/core/page/RuntimeCSSEnabled.cpp
+++ b/Source/core/page/RuntimeCSSEnabled.cpp
@@ -45,7 +45,6 @@ static void setCSSPropertiesEnabled(CSSPropertyID* properties, size_t length, bo
static void setPropertySwitchesFromRuntimeFeatures(BoolVector& properties)
{
-#if ENABLE(CSS_REGIONS)
CSSPropertyID regionProperites[] = {
CSSPropertyWebkitFlowInto,
CSSPropertyWebkitFlowFrom,
@@ -55,7 +54,6 @@ static void setPropertySwitchesFromRuntimeFeatures(BoolVector& properties)
CSSPropertyWebkitRegionBreakInside
};
setCSSPropertiesEnabled(regionProperites, WTF_ARRAY_LENGTH(regionProperites), RuntimeEnabledFeatures::cssRegionsEnabled());
-#endif
#if ENABLE(CSS_EXCLUSIONS)
CSSPropertyID exclusionProperties[] = {
CSSPropertyWebkitWrap,

Powered by Google App Engine
This is Rietveld 408576698