| 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 * Copyright (C) 2004, 2006, 2007, 2008, 2009, 2012 Apple Inc. All rights reserv
ed. | 4 * Copyright (C) 2004, 2006, 2007, 2008, 2009, 2012 Apple Inc. All rights reserv
ed. |
| 5 * | 5 * |
| 6 * This library is free software; you can redistribute it and/or | 6 * This library is free software; you can redistribute it and/or |
| 7 * modify it under the terms of the GNU Library General Public | 7 * modify it under the terms of the GNU Library General Public |
| 8 * License as published by the Free Software Foundation; either | 8 * License as published by the Free Software Foundation; either |
| 9 * version 2 of the License, or (at your option) any later version. | 9 * version 2 of the License, or (at your option) any later version. |
| 10 * | 10 * |
| (...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 100 | 100 |
| 101 private: | 101 private: |
| 102 // EventTarget functions: | 102 // EventTarget functions: |
| 103 void removeAllEventListeners() final; | 103 void removeAllEventListeners() final; |
| 104 | 104 |
| 105 // Node functions: | 105 // Node functions: |
| 106 bool canContainRangeEndPoint() const override { return false; } | 106 bool canContainRangeEndPoint() const override { return false; } |
| 107 bool canStartSelection() const override; | 107 bool canStartSelection() const override; |
| 108 bool willRespondToMouseClickEvents() final; | 108 bool willRespondToMouseClickEvents() final; |
| 109 void defaultEventHandler(Event*) final; | 109 void defaultEventHandler(Event*) final; |
| 110 void attach(const AttachContext& = AttachContext()) final; | 110 void attachLayoutTree(const AttachContext& = AttachContext()) final; |
| 111 void detach(const AttachContext& = AttachContext()) final; | 111 void detach(const AttachContext& = AttachContext()) final; |
| 112 void finishParsingChildren() final; | 112 void finishParsingChildren() final; |
| 113 | 113 |
| 114 // Element functions: | 114 // Element functions: |
| 115 LayoutObject* createLayoutObject(const ComputedStyle&) override; | 115 LayoutObject* createLayoutObject(const ComputedStyle&) override; |
| 116 bool supportsFocus() const final { return true; } | 116 bool supportsFocus() const final { return true; } |
| 117 bool layoutObjectIsFocusable() const final; | 117 bool layoutObjectIsFocusable() const final; |
| 118 bool isKeyboardFocusable() const final; | 118 bool isKeyboardFocusable() const final; |
| 119 void didAddUserAgentShadowRoot(ShadowRoot&) final; | 119 void didAddUserAgentShadowRoot(ShadowRoot&) final; |
| 120 | 120 |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 152 inline bool isHTMLPlugInElement(const HTMLElement& element) | 152 inline bool isHTMLPlugInElement(const HTMLElement& element) |
| 153 { | 153 { |
| 154 return element.isPluginElement(); | 154 return element.isPluginElement(); |
| 155 } | 155 } |
| 156 | 156 |
| 157 DEFINE_HTMLELEMENT_TYPE_CASTS_WITH_FUNCTION(HTMLPlugInElement); | 157 DEFINE_HTMLELEMENT_TYPE_CASTS_WITH_FUNCTION(HTMLPlugInElement); |
| 158 | 158 |
| 159 } // namespace blink | 159 } // namespace blink |
| 160 | 160 |
| 161 #endif // HTMLPlugInElement_h | 161 #endif // HTMLPlugInElement_h |
| OLD | NEW |