| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2004, 2005 Nikolas Zimmermann <zimmermann@kde.org> | 2 * Copyright (C) 2004, 2005 Nikolas Zimmermann <zimmermann@kde.org> |
| 3 * Copyright (C) 2004, 2005, 2006, 2007 Rob Buis <buis@kde.org> | 3 * Copyright (C) 2004, 2005, 2006, 2007 Rob Buis <buis@kde.org> |
| 4 * | 4 * |
| 5 * This library is free software; you can redistribute it and/or | 5 * This library is free software; you can redistribute it and/or |
| 6 * modify it under the terms of the GNU Library General Public | 6 * modify it under the terms of the GNU Library General Public |
| 7 * License as published by the Free Software Foundation; either | 7 * License as published by the Free Software Foundation; either |
| 8 * version 2 of the License, or (at your option) any later version. | 8 * version 2 of the License, or (at your option) any later version. |
| 9 * | 9 * |
| 10 * This library is distributed in the hope that it will be useful, | 10 * This library is distributed in the hope that it will be useful, |
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 50 String title() const override; | 50 String title() const override; |
| 51 void setTitle(const AtomicString&); | 51 void setTitle(const AtomicString&); |
| 52 | 52 |
| 53 void dispatchPendingEvent(); | 53 void dispatchPendingEvent(); |
| 54 | 54 |
| 55 DECLARE_VIRTUAL_TRACE(); | 55 DECLARE_VIRTUAL_TRACE(); |
| 56 | 56 |
| 57 private: | 57 private: |
| 58 SVGStyleElement(Document&, bool createdByParser); | 58 SVGStyleElement(Document&, bool createdByParser); |
| 59 | 59 |
| 60 void parseAttribute(const QualifiedName&, | 60 void parseAttribute(const AttributeModificationParams&) override; |
| 61 const AtomicString&, | |
| 62 const AtomicString&) override; | |
| 63 InsertionNotificationRequest insertedInto(ContainerNode*) override; | 61 InsertionNotificationRequest insertedInto(ContainerNode*) override; |
| 64 void didNotifySubtreeInsertionsToDocument() override; | 62 void didNotifySubtreeInsertionsToDocument() override; |
| 65 void removedFrom(ContainerNode*) override; | 63 void removedFrom(ContainerNode*) override; |
| 66 void childrenChanged(const ChildrenChange&) override; | 64 void childrenChanged(const ChildrenChange&) override; |
| 67 | 65 |
| 68 void finishParsingChildren() override; | 66 void finishParsingChildren() override; |
| 69 bool layoutObjectIsNeeded(const ComputedStyle&) override { return false; } | 67 bool layoutObjectIsNeeded(const ComputedStyle&) override { return false; } |
| 70 | 68 |
| 71 bool sheetLoaded() override { return StyleElement::sheetLoaded(document()); } | 69 bool sheetLoaded() override { return StyleElement::sheetLoaded(document()); } |
| 72 void notifyLoadedSheetAndAllCriticalSubresources( | 70 void notifyLoadedSheetAndAllCriticalSubresources( |
| 73 LoadedSheetErrorStatus) override; | 71 LoadedSheetErrorStatus) override; |
| 74 void startLoadingDynamicSheet() override { | 72 void startLoadingDynamicSheet() override { |
| 75 StyleElement::startLoadingDynamicSheet(document()); | 73 StyleElement::startLoadingDynamicSheet(document()); |
| 76 } | 74 } |
| 77 }; | 75 }; |
| 78 | 76 |
| 79 } // namespace blink | 77 } // namespace blink |
| 80 | 78 |
| 81 #endif // SVGStyleElement_h | 79 #endif // SVGStyleElement_h |
| OLD | NEW |