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

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

Issue 159893007: Revert of Update of change event for datetime input type (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 10 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 49 matching lines...) Expand 10 before | Expand all | Expand 10 after
60 bool shouldHaveSecondField(const DateComponents&) const; 60 bool shouldHaveSecondField(const DateComponents&) const;
61 61
62 private: 62 private:
63 // DateTimeEditElement::EditControlOwner functions 63 // DateTimeEditElement::EditControlOwner functions
64 virtual void didBlurFromControl() OVERRIDE FINAL; 64 virtual void didBlurFromControl() OVERRIDE FINAL;
65 virtual void didFocusOnControl() OVERRIDE FINAL; 65 virtual void didFocusOnControl() OVERRIDE FINAL;
66 virtual void editControlValueChanged() OVERRIDE FINAL; 66 virtual void editControlValueChanged() OVERRIDE FINAL;
67 virtual bool isEditControlOwnerDisabled() const OVERRIDE FINAL; 67 virtual bool isEditControlOwnerDisabled() const OVERRIDE FINAL;
68 virtual bool isEditControlOwnerReadOnly() const OVERRIDE FINAL; 68 virtual bool isEditControlOwnerReadOnly() const OVERRIDE FINAL;
69 virtual AtomicString localeIdentifier() const OVERRIDE FINAL; 69 virtual AtomicString localeIdentifier() const OVERRIDE FINAL;
70 virtual void editControlDidChangeValueByKeyboard() OVERRIDE FINAL;
71 70
72 // SpinButtonElement::SpinButtonOwner functions. 71 // SpinButtonElement::SpinButtonOwner functions.
73 virtual void focusAndSelectSpinButtonOwner() OVERRIDE; 72 virtual void focusAndSelectSpinButtonOwner() OVERRIDE;
74 virtual bool shouldSpinButtonRespondToMouseEvents() OVERRIDE; 73 virtual bool shouldSpinButtonRespondToMouseEvents() OVERRIDE;
75 virtual bool shouldSpinButtonRespondToWheelEvents() OVERRIDE; 74 virtual bool shouldSpinButtonRespondToWheelEvents() OVERRIDE;
76 virtual void spinButtonStepDown() OVERRIDE; 75 virtual void spinButtonStepDown() OVERRIDE;
77 virtual void spinButtonStepUp() OVERRIDE; 76 virtual void spinButtonStepUp() OVERRIDE;
78 virtual void spinButtonDidReleaseMouseCapture() OVERRIDE; 77 virtual void spinButtonDidReleaseMouseCapture() OVERRIDE;
79 78
80 // PickerIndicatorElement::PickerIndicatorOwner functions 79 // PickerIndicatorElement::PickerIndicatorOwner functions
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
124 123
125 bool m_isDestroyingShadowSubtree; 124 bool m_isDestroyingShadowSubtree;
126 bool m_pickerIndicatorIsVisible; 125 bool m_pickerIndicatorIsVisible;
127 bool m_pickerIndicatorIsAlwaysVisible; 126 bool m_pickerIndicatorIsAlwaysVisible;
128 }; 127 };
129 128
130 } // namespace WebCore 129 } // namespace WebCore
131 130
132 #endif 131 #endif
133 #endif // BaseMultipleFieldsDateAndTimeInputType_h 132 #endif // BaseMultipleFieldsDateAndTimeInputType_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698