| 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 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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; |
| 77 | 78 |
| 78 // PickerIndicatorElement::PickerIndicatorOwner functions | 79 // PickerIndicatorElement::PickerIndicatorOwner functions |
| 79 virtual bool isPickerIndicatorOwnerDisabledOrReadOnly() const OVERRIDE FINAL
; | 80 virtual bool isPickerIndicatorOwnerDisabledOrReadOnly() const OVERRIDE FINAL
; |
| 80 virtual void pickerIndicatorChooseValue(const String&) OVERRIDE FINAL; | 81 virtual void pickerIndicatorChooseValue(const String&) OVERRIDE FINAL; |
| 81 virtual void pickerIndicatorChooseValue(double) OVERRIDE FINAL; | 82 virtual void pickerIndicatorChooseValue(double) OVERRIDE FINAL; |
| 82 virtual bool setupDateTimeChooserParameters(DateTimeChooserParameters&) OVER
RIDE FINAL; | 83 virtual bool setupDateTimeChooserParameters(DateTimeChooserParameters&) OVER
RIDE FINAL; |
| 83 | 84 |
| 84 // ClearButtonElement::ClearButtonOwner functions. | 85 // ClearButtonElement::ClearButtonOwner functions. |
| 85 virtual void focusAndSelectClearButtonOwner() OVERRIDE; | 86 virtual void focusAndSelectClearButtonOwner() OVERRIDE; |
| 86 virtual bool shouldClearButtonRespondToMouseEvents() OVERRIDE; | 87 virtual bool shouldClearButtonRespondToMouseEvents() OVERRIDE; |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 122 | 123 |
| 123 bool m_isDestroyingShadowSubtree; | 124 bool m_isDestroyingShadowSubtree; |
| 124 bool m_pickerIndicatorIsVisible; | 125 bool m_pickerIndicatorIsVisible; |
| 125 bool m_pickerIndicatorIsAlwaysVisible; | 126 bool m_pickerIndicatorIsAlwaysVisible; |
| 126 }; | 127 }; |
| 127 | 128 |
| 128 } // namespace WebCore | 129 } // namespace WebCore |
| 129 | 130 |
| 130 #endif | 131 #endif |
| 131 #endif // BaseMultipleFieldsDateAndTimeInputType_h | 132 #endif // BaseMultipleFieldsDateAndTimeInputType_h |
| OLD | NEW |