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

Side by Side Diff: Source/core/html/forms/MonthInputType.h

Issue 130213005: Add autofill preview support for <month> input fields (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebase TestExpectations file Created 6 years, 9 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 unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2010 Google Inc. All rights reserved. 2 * Copyright (C) 2010 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
51 virtual void countUsage() OVERRIDE; 51 virtual void countUsage() OVERRIDE;
52 virtual const AtomicString& formControlType() const OVERRIDE; 52 virtual const AtomicString& formControlType() const OVERRIDE;
53 virtual double valueAsDate() const OVERRIDE; 53 virtual double valueAsDate() const OVERRIDE;
54 virtual String serializeWithMilliseconds(double) const OVERRIDE; 54 virtual String serializeWithMilliseconds(double) const OVERRIDE;
55 virtual Decimal parseToNumber(const String&, const Decimal&) const OVERRIDE; 55 virtual Decimal parseToNumber(const String&, const Decimal&) const OVERRIDE;
56 virtual Decimal defaultValueForStepUp() const OVERRIDE; 56 virtual Decimal defaultValueForStepUp() const OVERRIDE;
57 virtual StepRange createStepRange(AnyStepHandling) const OVERRIDE; 57 virtual StepRange createStepRange(AnyStepHandling) const OVERRIDE;
58 virtual bool parseToDateComponentsInternal(const String&, DateComponents*) c onst OVERRIDE; 58 virtual bool parseToDateComponentsInternal(const String&, DateComponents*) c onst OVERRIDE;
59 virtual bool setMillisecondToDateComponents(double, DateComponents*) const O VERRIDE; 59 virtual bool setMillisecondToDateComponents(double, DateComponents*) const O VERRIDE;
60 virtual bool isMonthField() const OVERRIDE; 60 virtual bool isMonthField() const OVERRIDE;
61 virtual bool canSetSuggestedValue() OVERRIDE;
61 62
62 #if ENABLE(INPUT_MULTIPLE_FIELDS_UI) 63 #if ENABLE(INPUT_MULTIPLE_FIELDS_UI)
63 // BaseMultipleFieldsDateAndTimeInputType functions 64 // BaseMultipleFieldsDateAndTimeInputType functions
64 virtual String formatDateTimeFieldsState(const DateTimeFieldsState&) const O VERRIDE; 65 virtual String formatDateTimeFieldsState(const DateTimeFieldsState&) const O VERRIDE;
65 virtual void setupLayoutParameters(DateTimeEditElement::LayoutParameters&, c onst DateComponents&) const OVERRIDE; 66 virtual void setupLayoutParameters(DateTimeEditElement::LayoutParameters&, c onst DateComponents&) const OVERRIDE;
66 virtual bool isValidFormat(bool hasYear, bool hasMonth, bool hasWeek, bool h asDay, bool hasAMPM, bool hasHour, bool hasMinute, bool hasSecond) const OVERRID E; 67 virtual bool isValidFormat(bool hasYear, bool hasMonth, bool hasWeek, bool h asDay, bool hasAMPM, bool hasHour, bool hasMinute, bool hasSecond) const OVERRID E;
67 #endif 68 #endif
68 }; 69 };
69 70
70 } // namespace WebCore 71 } // namespace WebCore
71 72
72 #endif // MonthInputType_h 73 #endif // MonthInputType_h
OLDNEW
« no previous file with comments | « Source/core/html/forms/BaseMultipleFieldsDateAndTimeInputType.cpp ('k') | Source/core/html/forms/MonthInputType.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698