| 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 Apple Inc. All rights reserved. | 4 * Copyright (C) 2004, 2006, 2007, 2008, 2009 Apple Inc. All rights reserved. |
| 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 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 96 | 96 |
| 97 void childrenChanged(const ChildrenChange&) override; | 97 void childrenChanged(const ChildrenChange&) override; |
| 98 | 98 |
| 99 bool isURLAttribute(const Attribute&) const override; | 99 bool isURLAttribute(const Attribute&) const override; |
| 100 bool hasLegalLinkAttribute(const QualifiedName&) const override; | 100 bool hasLegalLinkAttribute(const QualifiedName&) const override; |
| 101 const QualifiedName& subResourceAttributeName() const override; | 101 const QualifiedName& subResourceAttributeName() const override; |
| 102 const AtomicString imageSourceURL() const override; | 102 const AtomicString imageSourceURL() const override; |
| 103 | 103 |
| 104 LayoutPart* existingLayoutPart() const override; | 104 LayoutPart* existingLayoutPart() const override; |
| 105 | 105 |
| 106 void updateWidgetInternal() override; | 106 void updatePluginInternal() override; |
| 107 void updateDocNamedItem(); | 107 void updateDocNamedItem(); |
| 108 | 108 |
| 109 void reattachFallbackContent(); | 109 void reattachFallbackContent(); |
| 110 | 110 |
| 111 // FIXME: This function should not deal with url or serviceType | 111 // FIXME: This function should not deal with url or serviceType |
| 112 // so that we can better share code between <object> and <embed>. | 112 // so that we can better share code between <object> and <embed>. |
| 113 void parametersForPlugin(Vector<String>& paramNames, | 113 void parametersForPlugin(Vector<String>& paramNames, |
| 114 Vector<String>& paramValues, | 114 Vector<String>& paramValues, |
| 115 String& url, | 115 String& url, |
| 116 String& serviceType); | 116 String& serviceType); |
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 156 static_cast<const HTMLObjectElement&>(element); | 156 static_cast<const HTMLObjectElement&>(element); |
| 157 // We need to assert after the cast because ListedElement doesn't | 157 // We need to assert after the cast because ListedElement doesn't |
| 158 // have hasTagName. | 158 // have hasTagName. |
| 159 SECURITY_DCHECK(objectElement.hasTagName(HTMLNames::objectTag)); | 159 SECURITY_DCHECK(objectElement.hasTagName(HTMLNames::objectTag)); |
| 160 return objectElement; | 160 return objectElement; |
| 161 } | 161 } |
| 162 | 162 |
| 163 } // namespace blink | 163 } // namespace blink |
| 164 | 164 |
| 165 #endif // HTMLObjectElement_h | 165 #endif // HTMLObjectElement_h |
| OLD | NEW |