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

Unified Diff: third_party/WebKit/Source/core/html/forms/DateInputType.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/DateInputType.h
diff --git a/third_party/WebKit/Source/core/html/forms/DateInputType.h b/third_party/WebKit/Source/core/html/forms/DateInputType.h
index ef42fad9f6e8b9135415912f90ad52487e5b3a71..0afb7f38133583cb1b9f5e6cdabed84f296b7045 100644
--- a/third_party/WebKit/Source/core/html/forms/DateInputType.h
+++ b/third_party/WebKit/Source/core/html/forms/DateInputType.h
@@ -31,7 +31,7 @@
#ifndef DateInputType_h
#define DateInputType_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 BaseDateInputType = BaseMultipleFieldsDateAndTimeInputType;
#else
-using BaseDateInputType = BaseChooserOnlyDateAndTimeInputType;
+using BaseDateInputType = BaseDateAndTimeInputType;
#endif
class DateInputType final : public BaseDateInputType {

Powered by Google App Engine
This is Rietveld 408576698