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

Unified Diff: Source/WebCore/html/InputType.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/WebCore/css/html.css ('k') | Source/WebCore/html/WeekInputType.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/WebCore/html/InputType.cpp
diff --git a/Source/WebCore/html/InputType.cpp b/Source/WebCore/html/InputType.cpp
index 1f8f07f024ad0f9e8cb53fa521a0fef648b70096..3ad1d98cd2db517860862781d58624eb091053a9 100644
--- a/Source/WebCore/html/InputType.cpp
+++ b/Source/WebCore/html/InputType.cpp
@@ -118,10 +118,8 @@ static PassOwnPtr<InputTypeFactoryMap> createInputTypeFactoryMap()
map->add(InputTypeNames::telephone(), TelephoneInputType::create);
map->add(InputTypeNames::time(), TimeInputType::create);
map->add(InputTypeNames::url(), URLInputType::create);
-#if ENABLE(INPUT_TYPE_WEEK)
if (RuntimeEnabledFeatures::inputTypeWeekEnabled())
map->add(InputTypeNames::week(), WeekInputType::create);
-#endif
// No need to register "text" because it is the default type.
return map.release();
}
« no previous file with comments | « Source/WebCore/css/html.css ('k') | Source/WebCore/html/WeekInputType.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698