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

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

Issue 344693003: Reduce forward declarations in core/svg (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 6 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
« no previous file with comments | « Source/core/svg/SVGAnimationElement.h ('k') | Source/core/svg/SVGFEDiffuseLightingElement.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 20 matching lines...) Expand all
31 namespace WebCore { 31 namespace WebCore {
32 32
33 class Document; 33 class Document;
34 class RenderSVGResourceContainer; 34 class RenderSVGResourceContainer;
35 class SubtreeLayoutScope; 35 class SubtreeLayoutScope;
36 class SVGElement; 36 class SVGElement;
37 #if ENABLE(SVG_FONTS) 37 #if ENABLE(SVG_FONTS)
38 class SVGFontFaceElement; 38 class SVGFontFaceElement;
39 #endif 39 #endif
40 class SVGResourcesCache; 40 class SVGResourcesCache;
41 class SVGSMILElement;
42 class SVGSVGElement; 41 class SVGSVGElement;
43 class Element; 42 class Element;
44 43
45 typedef WillBeHeapHashSet<RawPtrWillBeMember<SVGElement> > SVGElementSet; 44 typedef WillBeHeapHashSet<RawPtrWillBeMember<SVGElement> > SVGElementSet;
46 45
47 class SVGDocumentExtensions : public NoBaseWillBeGarbageCollectedFinalized<SVGDo cumentExtensions> { 46 class SVGDocumentExtensions : public NoBaseWillBeGarbageCollectedFinalized<SVGDo cumentExtensions> {
48 WTF_MAKE_NONCOPYABLE(SVGDocumentExtensions); WTF_MAKE_FAST_ALLOCATED_WILL_BE _REMOVED; 47 WTF_MAKE_NONCOPYABLE(SVGDocumentExtensions); WTF_MAKE_FAST_ALLOCATED_WILL_BE _REMOVED;
49 public: 48 public:
50 typedef HashSet<Element*> SVGPendingElements; 49 typedef HashSet<Element*> SVGPendingElements;
51 explicit SVGDocumentExtensions(Document*); 50 explicit SVGDocumentExtensions(Document*);
(...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after
137 void markPendingResourcesForRemoval(const AtomicString&); 136 void markPendingResourcesForRemoval(const AtomicString&);
138 Element* removeElementFromPendingResourcesForRemoval(const AtomicString&); 137 Element* removeElementFromPendingResourcesForRemoval(const AtomicString&);
139 138
140 private: 139 private:
141 PassOwnPtr<SVGPendingElements> removePendingResourceForRemoval(const AtomicS tring&); 140 PassOwnPtr<SVGPendingElements> removePendingResourceForRemoval(const AtomicS tring&);
142 }; 141 };
143 142
144 } 143 }
145 144
146 #endif 145 #endif
OLDNEW
« no previous file with comments | « Source/core/svg/SVGAnimationElement.h ('k') | Source/core/svg/SVGFEDiffuseLightingElement.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698