| OLD | NEW |
| 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 Loading... |
| 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; |
| 70 | 71 |
| 71 // SpinButtonElement::SpinButtonOwner functions. | 72 // SpinButtonElement::SpinButtonOwner functions. |
| 72 virtual void focusAndSelectSpinButtonOwner() OVERRIDE; | 73 virtual void focusAndSelectSpinButtonOwner() OVERRIDE; |
| 73 virtual bool shouldSpinButtonRespondToMouseEvents() OVERRIDE; | 74 virtual bool shouldSpinButtonRespondToMouseEvents() OVERRIDE; |
| 74 virtual bool shouldSpinButtonRespondToWheelEvents() OVERRIDE; | 75 virtual bool shouldSpinButtonRespondToWheelEvents() OVERRIDE; |
| 75 virtual void spinButtonStepDown() OVERRIDE; | 76 virtual void spinButtonStepDown() OVERRIDE; |
| 76 virtual void spinButtonStepUp() OVERRIDE; | 77 virtual void spinButtonStepUp() OVERRIDE; |
| 77 virtual void spinButtonDidReleaseMouseCapture() OVERRIDE; | 78 virtual void spinButtonDidReleaseMouseCapture() OVERRIDE; |
| 78 | 79 |
| 79 // PickerIndicatorElement::PickerIndicatorOwner functions | 80 // PickerIndicatorElement::PickerIndicatorOwner functions |
| (...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 123 | 124 |
| 124 bool m_isDestroyingShadowSubtree; | 125 bool m_isDestroyingShadowSubtree; |
| 125 bool m_pickerIndicatorIsVisible; | 126 bool m_pickerIndicatorIsVisible; |
| 126 bool m_pickerIndicatorIsAlwaysVisible; | 127 bool m_pickerIndicatorIsAlwaysVisible; |
| 127 }; | 128 }; |
| 128 | 129 |
| 129 } // namespace WebCore | 130 } // namespace WebCore |
| 130 | 131 |
| 131 #endif | 132 #endif |
| 132 #endif // BaseMultipleFieldsDateAndTimeInputType_h | 133 #endif // BaseMultipleFieldsDateAndTimeInputType_h |
| OLD | NEW |