Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(53)

Side by Side Diff: third_party/WebKit/Source/core/svg/SVGStyleElement.h

Issue 2623513005: Introduce Element::AttributeModificationParams (Closed)
Patch Set: Created 3 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/svg/SVGScriptElement.cpp ('k') | third_party/WebKit/Source/core/svg/SVGStyleElement.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698