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

Unified Diff: Source/WebKit/chromium/src/WebRuntimeFeatures.cpp

Issue 13888003: Remove compile-time / run-time flags for input[type=date]. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: rebase 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/public/WebRuntimeFeatures.h ('k') | Source/WebKit/chromium/tests/WebViewTest.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/WebKit/chromium/src/WebRuntimeFeatures.cpp
diff --git a/Source/WebKit/chromium/src/WebRuntimeFeatures.cpp b/Source/WebKit/chromium/src/WebRuntimeFeatures.cpp
index 8c1b73bca93332c07bdb347e92578a96676e00ad..dc4a78e1d5e8bf98bbfdd0a532ab242c5c12f34a 100644
--- a/Source/WebKit/chromium/src/WebRuntimeFeatures.cpp
+++ b/Source/WebKit/chromium/src/WebRuntimeFeatures.cpp
@@ -472,24 +472,6 @@ bool WebRuntimeFeatures::isStyleScopedEnabled()
#endif
}
-void WebRuntimeFeatures::enableInputTypeDate(bool enable)
-{
-#if ENABLE(INPUT_TYPE_DATE)
- RuntimeEnabledFeatures::setInputTypeDateEnabled(enable);
-#else
- UNUSED_PARAM(enable);
-#endif
-}
-
-bool WebRuntimeFeatures::isInputTypeDateEnabled()
-{
-#if ENABLE(INPUT_TYPE_DATE)
- return RuntimeEnabledFeatures::inputTypeDateEnabled();
-#else
- return false;
-#endif
-}
-
void WebRuntimeFeatures::enableInputTypeDateTime(bool enable)
{
#if ENABLE(INPUT_TYPE_DATETIME_INCOMPLETE)
« no previous file with comments | « Source/WebKit/chromium/public/WebRuntimeFeatures.h ('k') | Source/WebKit/chromium/tests/WebViewTest.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698