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

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

Issue 157813010: Revert of Update of change event for input type number (https://codereview.chromium.org/128133002/) (Closed) Base URL: svn://svn.chromium.org/blink/trunk
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 | Annotate | Revision Log
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 56 matching lines...) Expand 10 before | Expand all | Expand 10 after
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 70
71 // SpinButtonElement::SpinButtonOwner functions. 71 // SpinButtonElement::SpinButtonOwner functions.
72 virtual void focusAndSelectSpinButtonOwner() OVERRIDE; 72 virtual void focusAndSelectSpinButtonOwner() OVERRIDE;
73 virtual bool shouldSpinButtonRespondToMouseEvents() OVERRIDE; 73 virtual bool shouldSpinButtonRespondToMouseEvents() OVERRIDE;
74 virtual bool shouldSpinButtonRespondToWheelEvents() OVERRIDE; 74 virtual bool shouldSpinButtonRespondToWheelEvents() OVERRIDE;
75 virtual void spinButtonStepDown() OVERRIDE; 75 virtual void spinButtonStepDown() OVERRIDE;
76 virtual void spinButtonStepUp() OVERRIDE; 76 virtual void spinButtonStepUp() OVERRIDE;
77 virtual void spinButtonDidReleaseMouseCapture() OVERRIDE;
78 77
79 // PickerIndicatorElement::PickerIndicatorOwner functions 78 // PickerIndicatorElement::PickerIndicatorOwner functions
80 virtual bool isPickerIndicatorOwnerDisabledOrReadOnly() const OVERRIDE FINAL ; 79 virtual bool isPickerIndicatorOwnerDisabledOrReadOnly() const OVERRIDE FINAL ;
81 virtual void pickerIndicatorChooseValue(const String&) OVERRIDE FINAL; 80 virtual void pickerIndicatorChooseValue(const String&) OVERRIDE FINAL;
82 virtual void pickerIndicatorChooseValue(double) OVERRIDE FINAL; 81 virtual void pickerIndicatorChooseValue(double) OVERRIDE FINAL;
83 virtual bool setupDateTimeChooserParameters(DateTimeChooserParameters&) OVER RIDE FINAL; 82 virtual bool setupDateTimeChooserParameters(DateTimeChooserParameters&) OVER RIDE FINAL;
84 83
85 // ClearButtonElement::ClearButtonOwner functions. 84 // ClearButtonElement::ClearButtonOwner functions.
86 virtual void focusAndSelectClearButtonOwner() OVERRIDE; 85 virtual void focusAndSelectClearButtonOwner() OVERRIDE;
87 virtual bool shouldClearButtonRespondToMouseEvents() OVERRIDE; 86 virtual bool shouldClearButtonRespondToMouseEvents() OVERRIDE;
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
123 122
124 bool m_isDestroyingShadowSubtree; 123 bool m_isDestroyingShadowSubtree;
125 bool m_pickerIndicatorIsVisible; 124 bool m_pickerIndicatorIsVisible;
126 bool m_pickerIndicatorIsAlwaysVisible; 125 bool m_pickerIndicatorIsAlwaysVisible;
127 }; 126 };
128 127
129 } // namespace WebCore 128 } // namespace WebCore
130 129
131 #endif 130 #endif
132 #endif // BaseMultipleFieldsDateAndTimeInputType_h 131 #endif // BaseMultipleFieldsDateAndTimeInputType_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698