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

Unified Diff: third_party/WebKit/Source/core/html/forms/WeekInputType.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/WeekInputType.h
diff --git a/third_party/WebKit/Source/core/html/forms/WeekInputType.h b/third_party/WebKit/Source/core/html/forms/WeekInputType.h
index ca401ec30b4f56aa2f4e993a2ca257d6d7b1fedc..09a2ebb12f630e75d2eef844fbf16b12f575c67f 100644
--- a/third_party/WebKit/Source/core/html/forms/WeekInputType.h
+++ b/third_party/WebKit/Source/core/html/forms/WeekInputType.h
@@ -31,7 +31,7 @@
#ifndef WeekInputType_h
#define WeekInputType_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 BaseWeekInputType = BaseMultipleFieldsDateAndTimeInputType;
#else
-using BaseWeekInputType = BaseChooserOnlyDateAndTimeInputType;
+using BaseWeekInputType = BaseDateAndTimeInputType;
#endif
class WeekInputType final : public BaseWeekInputType {

Powered by Google App Engine
This is Rietveld 408576698