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

Unified Diff: Source/bindings/v8/RuntimeEnabledFeatures.h

Issue 14083009: Remove ENABLE_CUSTOM_ELEMENTS compile time flag (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Removing flag from features.gypi 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/bindings/v8/RuntimeEnabledFeatures.h
diff --git a/Source/bindings/v8/RuntimeEnabledFeatures.h b/Source/bindings/v8/RuntimeEnabledFeatures.h
index 9d9209fca17a0d119742a1c43dabf0cfa35e6520..178d0fa466f5b16a890433485719fd40d952961d 100644
--- a/Source/bindings/v8/RuntimeEnabledFeatures.h
+++ b/Source/bindings/v8/RuntimeEnabledFeatures.h
@@ -210,10 +210,8 @@ public:
static bool authorShadowDOMForAnyElementEnabled() { return isAuthorShadowDOMForAnyElementEnabled; }
static void setAuthorShadowDOMForAnyElementEnabled(bool isEnabled) { isAuthorShadowDOMForAnyElementEnabled = isEnabled; }
-#if ENABLE(CUSTOM_ELEMENTS)
static bool customDOMElementsEnabled() { return isCustomDOMElementsEnabled; }
static void setCustomDOMElements(bool isEnabled) { isCustomDOMElementsEnabled = isEnabled; }
-#endif
static bool styleScopedEnabled() { return isStyleScopedEnabled; }
static void setStyleScopedEnabled(bool isEnabled) { isStyleScopedEnabled = isEnabled; }
@@ -308,9 +306,7 @@ private:
static bool isAuthorShadowDOMForAnyElementEnabled;
-#if ENABLE(CUSTOM_ELEMENTS)
static bool isCustomDOMElementsEnabled;
-#endif
static bool isStyleScopedEnabled;

Powered by Google App Engine
This is Rietveld 408576698