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

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

Issue 14141002: Remove ENABLE_INPUT_TYPE_WEEK compile-time flag. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Update html.css 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
« no previous file with comments | « Source/WebKit/chromium/tests/WebViewTest.cpp ('k') | Source/bindings/v8/RuntimeEnabledFeatures.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/bindings/v8/RuntimeEnabledFeatures.h
diff --git a/Source/bindings/v8/RuntimeEnabledFeatures.h b/Source/bindings/v8/RuntimeEnabledFeatures.h
index f187ad30d57b8c7a4dee71c3ae2a63853d0abc0c..f5aad835d05d7ed54b7323b4b575dc27413c7a38 100644
--- a/Source/bindings/v8/RuntimeEnabledFeatures.h
+++ b/Source/bindings/v8/RuntimeEnabledFeatures.h
@@ -233,10 +233,8 @@ public:
static void setInputTypeDateTimeEnabled(bool isEnabled) { isInputTypeDateTimeEnabled = isEnabled; }
#endif
-#if ENABLE(INPUT_TYPE_WEEK)
static bool inputTypeWeekEnabled() { return isInputTypeWeekEnabled; }
static void setInputTypeWeekEnabled(bool isEnabled) { isInputTypeWeekEnabled = isEnabled; }
-#endif
#if ENABLE(DIALOG_ELEMENT)
static bool dialogElementEnabled() { return isDialogElementEnabled; }
@@ -327,9 +325,7 @@ private:
static bool isInputTypeDateTimeEnabled;
#endif
-#if ENABLE(INPUT_TYPE_WEEK)
static bool isInputTypeWeekEnabled;
-#endif
#if ENABLE(DIALOG_ELEMENT)
static bool isDialogElementEnabled;
« no previous file with comments | « Source/WebKit/chromium/tests/WebViewTest.cpp ('k') | Source/bindings/v8/RuntimeEnabledFeatures.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698