| 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 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 94 virtual void clearValue() override; | 94 virtual void clearValue() override; |
| 95 | 95 |
| 96 // InputType functions | 96 // InputType functions |
| 97 virtual String badInputText() const override; | 97 virtual String badInputText() const override; |
| 98 virtual void blur() override final; | 98 virtual void blur() override final; |
| 99 virtual PassRefPtr<RenderStyle> customStyleForRenderer(PassRefPtr<RenderStyl
e>) override; | 99 virtual PassRefPtr<RenderStyle> customStyleForRenderer(PassRefPtr<RenderStyl
e>) override; |
| 100 virtual void createShadowSubtree() override final; | 100 virtual void createShadowSubtree() override final; |
| 101 virtual void destroyShadowSubtree() override final; | 101 virtual void destroyShadowSubtree() override final; |
| 102 virtual void disabledAttributeChanged() override final; | 102 virtual void disabledAttributeChanged() override final; |
| 103 virtual void forwardEvent(Event*) override final; | 103 virtual void forwardEvent(Event*) override final; |
| 104 virtual void handleFocusInEvent(Element* oldFocusedElement, FocusType) overr
ide final; | 104 virtual void handleFocusInEvent(Element* oldFocusedElement, WebFocusType) ov
erride final; |
| 105 virtual void handleKeydownEvent(KeyboardEvent*) override final; | 105 virtual void handleKeydownEvent(KeyboardEvent*) override final; |
| 106 virtual bool hasBadInput() const override; | 106 virtual bool hasBadInput() const override; |
| 107 virtual bool hasCustomFocusLogic() const override final; | 107 virtual bool hasCustomFocusLogic() const override final; |
| 108 virtual void minOrMaxAttributeChanged() override final; | 108 virtual void minOrMaxAttributeChanged() override final; |
| 109 virtual void readonlyAttributeChanged() override final; | 109 virtual void readonlyAttributeChanged() override final; |
| 110 virtual void requiredAttributeChanged() override final; | 110 virtual void requiredAttributeChanged() override final; |
| 111 virtual void restoreFormControlState(const FormControlState&) override final
; | 111 virtual void restoreFormControlState(const FormControlState&) override final
; |
| 112 virtual FormControlState saveFormControlState() const override final; | 112 virtual FormControlState saveFormControlState() const override final; |
| 113 virtual void setValue(const String&, bool valueChanged, TextFieldEventBehavi
or) override final; | 113 virtual void setValue(const String&, bool valueChanged, TextFieldEventBehavi
or) override final; |
| 114 virtual void stepAttributeChanged() override final; | 114 virtual void stepAttributeChanged() override final; |
| (...skipping 15 matching lines...) Expand all Loading... |
| 130 | 130 |
| 131 bool m_isDestroyingShadowSubtree; | 131 bool m_isDestroyingShadowSubtree; |
| 132 bool m_pickerIndicatorIsVisible; | 132 bool m_pickerIndicatorIsVisible; |
| 133 bool m_pickerIndicatorIsAlwaysVisible; | 133 bool m_pickerIndicatorIsAlwaysVisible; |
| 134 }; | 134 }; |
| 135 | 135 |
| 136 } // namespace blink | 136 } // namespace blink |
| 137 | 137 |
| 138 #endif | 138 #endif |
| 139 #endif // BaseMultipleFieldsDateAndTimeInputType_h | 139 #endif // BaseMultipleFieldsDateAndTimeInputType_h |
| OLD | NEW |