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

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

Issue 1645043002: Don't give 'order' semantic errors special treatment (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 10 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) 2006 Apple Inc. All rights reserved. 2 * Copyright (C) 2006 Apple Inc. All rights reserved.
3 * Copyright (C) 2006, 2008 Nikolas Zimmermann <zimmermann@kde.org> 3 * Copyright (C) 2006, 2008 Nikolas Zimmermann <zimmermann@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 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
54 void addResource(const AtomicString& id, LayoutSVGResourceContainer*); 54 void addResource(const AtomicString& id, LayoutSVGResourceContainer*);
55 void removeResource(const AtomicString& id); 55 void removeResource(const AtomicString& id);
56 LayoutSVGResourceContainer* resourceById(const AtomicString& id) const; 56 LayoutSVGResourceContainer* resourceById(const AtomicString& id) const;
57 57
58 static void serviceOnAnimationFrame(Document&, double monotonicAnimationStar tTime); 58 static void serviceOnAnimationFrame(Document&, double monotonicAnimationStar tTime);
59 59
60 void startAnimations(); 60 void startAnimations();
61 void pauseAnimations(); 61 void pauseAnimations();
62 void dispatchSVGLoadEventToOutermostSVGElements(); 62 void dispatchSVGLoadEventToOutermostSVGElements();
63 63
64 void reportWarning(const String&);
65 void reportError(const String&); 64 void reportError(const String&);
66 65
67 SVGResourcesCache& resourcesCache() { return m_resourcesCache; } 66 SVGResourcesCache& resourcesCache() { return m_resourcesCache; }
68 67
69 void addSVGRootWithRelativeLengthDescendents(SVGSVGElement*); 68 void addSVGRootWithRelativeLengthDescendents(SVGSVGElement*);
70 void removeSVGRootWithRelativeLengthDescendents(SVGSVGElement*); 69 void removeSVGRootWithRelativeLengthDescendents(SVGSVGElement*);
71 bool isSVGRootWithRelativeLengthDescendents(SVGSVGElement*) const; 70 bool isSVGRootWithRelativeLengthDescendents(SVGSVGElement*) const;
72 void invalidateSVGRootsWithRelativeLengthDescendents(SubtreeLayoutScope*); 71 void invalidateSVGRootsWithRelativeLengthDescendents(SubtreeLayoutScope*);
73 72
74 bool zoomAndPanEnabled() const; 73 bool zoomAndPanEnabled() const;
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
114 void markPendingResourcesForRemoval(const AtomicString&); 113 void markPendingResourcesForRemoval(const AtomicString&);
115 Element* removeElementFromPendingResourcesForRemoval(const AtomicString&); 114 Element* removeElementFromPendingResourcesForRemoval(const AtomicString&);
116 115
117 private: 116 private:
118 PassOwnPtrWillBeRawPtr<SVGPendingElements> removePendingResourceForRemoval(c onst AtomicString&); 117 PassOwnPtrWillBeRawPtr<SVGPendingElements> removePendingResourceForRemoval(c onst AtomicString&);
119 }; 118 };
120 119
121 } // namespace blink 120 } // namespace blink
122 121
123 #endif 122 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698