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

Unified Diff: third_party/WebKit/Source/core/html/forms/MonthInputType.h

Issue 1896073002: Make BaseChooserOnlyDateAndTimeInputType a subclass of InputTypeView. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 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: third_party/WebKit/Source/core/html/forms/MonthInputType.h
diff --git a/third_party/WebKit/Source/core/html/forms/MonthInputType.h b/third_party/WebKit/Source/core/html/forms/MonthInputType.h
index 4a6e3f3d45c34bdc9e3186db4456cf0ebffb2a78..2ec6dd51466f8ae255b5a98a4b690aeb57e25cf0 100644
--- a/third_party/WebKit/Source/core/html/forms/MonthInputType.h
+++ b/third_party/WebKit/Source/core/html/forms/MonthInputType.h
@@ -31,7 +31,7 @@
#ifndef MonthInputType_h
#define MonthInputType_h
-#include "core/html/forms/BaseChooserOnlyDateAndTimeInputType.h"
+#include "core/html/forms/BaseDateAndTimeInputType.h"
#include "core/html/forms/BaseMultipleFieldsDateAndTimeInputType.h"
namespace blink {
@@ -39,7 +39,7 @@ namespace blink {
#if ENABLE(INPUT_MULTIPLE_FIELDS_UI)
using BaseMonthInputType = BaseMultipleFieldsDateAndTimeInputType;
#else
-using BaseMonthInputType = BaseChooserOnlyDateAndTimeInputType;
+using BaseMonthInputType = BaseDateAndTimeInputType;
#endif
class MonthInputType final : public BaseMonthInputType {

Powered by Google App Engine
This is Rietveld 408576698