| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) | 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) |
| 3 * (C) 1999 Antti Koivisto (koivisto@kde.org) | 3 * (C) 1999 Antti Koivisto (koivisto@kde.org) |
| 4 * (C) 2000 Dirk Mueller (mueller@kde.org) | 4 * (C) 2000 Dirk Mueller (mueller@kde.org) |
| 5 * Copyright (C) 2004, 2005, 2006, 2007, 2010 Apple Inc. All rights reserved. | 5 * Copyright (C) 2004, 2005, 2006, 2007, 2010 Apple Inc. All rights reserved. |
| 6 * Copyright (C) 2012 Samsung Electronics. All rights reserved. | 6 * Copyright (C) 2012 Samsung Electronics. All rights reserved. |
| 7 * | 7 * |
| 8 * This library is free software; you can redistribute it and/or | 8 * This library is free software; you can redistribute it and/or |
| 9 * modify it under the terms of the GNU Library General Public | 9 * modify it under the terms of the GNU Library General Public |
| 10 * License as published by the Free Software Foundation; either | 10 * License as published by the Free Software Foundation; either |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 42 class InputTypeView; | 42 class InputTypeView; |
| 43 class KURL; | 43 class KURL; |
| 44 class ListAttributeTargetObserver; | 44 class ListAttributeTargetObserver; |
| 45 class RadioButtonGroupScope; | 45 class RadioButtonGroupScope; |
| 46 struct DateTimeChooserParameters; | 46 struct DateTimeChooserParameters; |
| 47 | 47 |
| 48 class CORE_EXPORT HTMLInputElement : public TextControlElement { | 48 class CORE_EXPORT HTMLInputElement : public TextControlElement { |
| 49 DEFINE_WRAPPERTYPEINFO(); | 49 DEFINE_WRAPPERTYPEINFO(); |
| 50 | 50 |
| 51 public: | 51 public: |
| 52 static HTMLInputElement* create(Document&, | 52 static HTMLInputElement* create(Document&, bool createdByParser); |
| 53 bool createdByParser); | |
| 54 ~HTMLInputElement() override; | 53 ~HTMLInputElement() override; |
| 55 DECLARE_VIRTUAL_TRACE(); | 54 DECLARE_VIRTUAL_TRACE(); |
| 56 | 55 |
| 57 DEFINE_ATTRIBUTE_EVENT_LISTENER(webkitspeechchange); | 56 DEFINE_ATTRIBUTE_EVENT_LISTENER(webkitspeechchange); |
| 58 | 57 |
| 59 bool shouldAutocomplete() const final; | 58 bool shouldAutocomplete() const final; |
| 60 | 59 |
| 61 // For ValidityState | 60 // For ValidityState |
| 62 bool hasBadInput() const final; | 61 bool hasBadInput() const final; |
| 63 bool patternMismatch() const final; | 62 bool patternMismatch() const final; |
| (...skipping 361 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 425 // assumes that it lives as long as its owning element lives. If we move the | 424 // assumes that it lives as long as its owning element lives. If we move the |
| 426 // loader into the ImageInput object we may delete the loader while this | 425 // loader into the ImageInput object we may delete the loader while this |
| 427 // element lives on. | 426 // element lives on. |
| 428 Member<HTMLImageLoader> m_imageLoader; | 427 Member<HTMLImageLoader> m_imageLoader; |
| 429 Member<ListAttributeTargetObserver> m_listAttributeTargetObserver; | 428 Member<ListAttributeTargetObserver> m_listAttributeTargetObserver; |
| 430 }; | 429 }; |
| 431 | 430 |
| 432 } // namespace blink | 431 } // namespace blink |
| 433 | 432 |
| 434 #endif // HTMLInputElement_h | 433 #endif // HTMLInputElement_h |
| OLD | NEW |