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

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

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/features.gypi ('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 7b124750b86f182d0f1b9438229f2b27b8d10a8d..a265fe13ba1bd29b699bb7abfef5ff3409cb1647 100644
--- a/Source/WebKit/chromium/src/WebRuntimeFeatures.cpp
+++ b/Source/WebKit/chromium/src/WebRuntimeFeatures.cpp
@@ -466,20 +466,12 @@ bool WebRuntimeFeatures::isInputTypeDateTimeEnabled()
void WebRuntimeFeatures::enableInputTypeWeek(bool enable)
{
-#if ENABLE(INPUT_TYPE_WEEK)
RuntimeEnabledFeatures::setInputTypeWeekEnabled(enable);
-#else
- UNUSED_PARAM(enable);
-#endif
}
bool WebRuntimeFeatures::isInputTypeWeekEnabled()
{
-#if ENABLE(INPUT_TYPE_WEEK)
return RuntimeEnabledFeatures::inputTypeWeekEnabled();
-#else
- return false;
-#endif
}
void WebRuntimeFeatures::enableDialogElement(bool enable)
« no previous file with comments | « Source/WebKit/chromium/features.gypi ('k') | Source/WebKit/chromium/tests/WebViewTest.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698