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

Unified Diff: tools/dom/templates/html/impl/impl_HTMLInputElement.darttemplate

Issue 11770004: Rename Date to DateTime. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 11 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: tools/dom/templates/html/impl/impl_HTMLInputElement.darttemplate
diff --git a/tools/dom/templates/html/impl/impl_HTMLInputElement.darttemplate b/tools/dom/templates/html/impl/impl_HTMLInputElement.darttemplate
index 45da9bc6cf10bca8ead1f65790604525b06ff158..550bb845c8440cf7ccc5b07e00339c9ac090062c 100644
--- a/tools/dom/templates/html/impl/impl_HTMLInputElement.darttemplate
+++ b/tools/dom/templates/html/impl/impl_HTMLInputElement.darttemplate
@@ -316,7 +316,7 @@ abstract class DateTimeInputElement implements RangeInputElementBase {
factory DateTimeInputElement() => new InputElement(type: 'datetime');
/// @domName HTMLInputElement.valueAsDate
- Date valueAsDate;
+ DateTime valueAsDate;
/// @domName HTMLInputElement.readOnly
bool readOnly;
@@ -341,7 +341,7 @@ abstract class DateInputElement implements RangeInputElementBase {
factory DateInputElement() => new InputElement(type: 'date');
/// @domName HTMLInputElement.valueAsDate
- Date valueAsDate;
+ DateTime valueAsDate;
/// @domName HTMLInputElement.readOnly
bool readOnly;
@@ -366,7 +366,7 @@ abstract class MonthInputElement implements RangeInputElementBase {
factory MonthInputElement() => new InputElement(type: 'month');
/// @domName HTMLInputElement.valueAsDate
- Date valueAsDate;
+ DateTime valueAsDate;
/// @domName HTMLInputElement.readOnly
bool readOnly;
@@ -391,7 +391,7 @@ abstract class WeekInputElement implements RangeInputElementBase {
factory WeekInputElement() => new InputElement(type: 'week');
/// @domName HTMLInputElement.valueAsDate
- Date valueAsDate;
+ DateTime valueAsDate;
/// @domName HTMLInputElement.readOnly
bool readOnly;
@@ -416,7 +416,7 @@ abstract class TimeInputElement implements RangeInputElementBase {
factory TimeInputElement() => new InputElement(type: 'time');
/// @domName HTMLInputElement.valueAsDate
- Date valueAsDate;
+ DateTime valueAsDate;
/// @domName HTMLInputElement.readOnly
bool readOnly;

Powered by Google App Engine
This is Rietveld 408576698