| 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, 2008, 2009 Apple Inc. All rights reserved. | 4 * Copyright (C) 2004, 2006, 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 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 43 void parseAttribute(const QualifiedName&, const AtomicString&) override; | 43 void parseAttribute(const QualifiedName&, const AtomicString&) override; |
| 44 bool isURLAttribute(const Attribute&) const override; | 44 bool isURLAttribute(const Attribute&) const override; |
| 45 bool hasLegalLinkAttribute(const QualifiedName&) const override; | 45 bool hasLegalLinkAttribute(const QualifiedName&) const override; |
| 46 | 46 |
| 47 bool layoutObjectIsNeeded(const ComputedStyle&) override; | 47 bool layoutObjectIsNeeded(const ComputedStyle&) override; |
| 48 LayoutObject* createLayoutObject(const ComputedStyle&) override; | 48 LayoutObject* createLayoutObject(const ComputedStyle&) override; |
| 49 | 49 |
| 50 LayoutPart* existingLayoutPart() const override; | 50 LayoutPart* existingLayoutPart() const override; |
| 51 void updateWidgetInternal() override; | 51 void updateWidgetInternal() override; |
| 52 | 52 |
| 53 bool canEmbedJava() const; |
| 53 bool canEmbedURL(const KURL&) const; | 54 bool canEmbedURL(const KURL&) const; |
| 54 | 55 |
| 55 bool shouldRegisterAsNamedItem() const override { return true; } | 56 bool shouldRegisterAsNamedItem() const override { return true; } |
| 56 bool shouldRegisterAsExtraNamedItem() const override { return true; } | 57 bool shouldRegisterAsExtraNamedItem() const override { return true; } |
| 57 }; | 58 }; |
| 58 | 59 |
| 59 } // namespace blink | 60 } // namespace blink |
| 60 | 61 |
| 61 #endif // HTMLAppletElement_h | 62 #endif // HTMLAppletElement_h |
| OLD | NEW |