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

Side by Side Diff: Source/core/svg/graphics/SVGImageCache.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/graphics/SVGImage.h ('k') | Source/core/svg/graphics/filters/SVGFEImage.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) 2011 Research In Motion Limited. All rights reserved. 2 * Copyright (C) 2011 Research In Motion Limited. All rights reserved.
3 * 3 *
4 * This library is free software; you can redistribute it and/or 4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Library General Public 5 * modify it under the terms of the GNU Library General Public
6 * License as published by the Free Software Foundation; either 6 * License as published by the Free Software Foundation; either
7 * version 2 of the License, or (at your option) any later version. 7 * version 2 of the License, or (at your option) any later version.
8 * 8 *
9 * This library is distributed in the hope that it will be useful, 9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
(...skipping 11 matching lines...) Expand all
22 22
23 #include "platform/geometry/FloatSize.h" 23 #include "platform/geometry/FloatSize.h"
24 #include "platform/geometry/IntSize.h" 24 #include "platform/geometry/IntSize.h"
25 #include "platform/graphics/Image.h" 25 #include "platform/graphics/Image.h"
26 #include "wtf/HashMap.h" 26 #include "wtf/HashMap.h"
27 #include "wtf/PassOwnPtr.h" 27 #include "wtf/PassOwnPtr.h"
28 #include "wtf/RefPtr.h" 28 #include "wtf/RefPtr.h"
29 29
30 namespace WebCore { 30 namespace WebCore {
31 31
32 class ImageResource;
33 class ImageResourceClient; 32 class ImageResourceClient;
34 class ImageBuffer;
35 class SVGImage; 33 class SVGImage;
36 class SVGImageForContainer; 34 class SVGImageForContainer;
37 class RenderObject; 35 class RenderObject;
38 36
39 class SVGImageCache { 37 class SVGImageCache {
40 WTF_MAKE_FAST_ALLOCATED; 38 WTF_MAKE_FAST_ALLOCATED;
41 public: 39 public:
42 ~SVGImageCache(); 40 ~SVGImageCache();
43 41
44 static PassOwnPtr<SVGImageCache> create(SVGImage* image) 42 static PassOwnPtr<SVGImageCache> create(SVGImage* image)
(...skipping 13 matching lines...) Expand all
58 56
59 typedef HashMap<const ImageResourceClient*, RefPtr<SVGImageForContainer> > I mageForContainerMap; 57 typedef HashMap<const ImageResourceClient*, RefPtr<SVGImageForContainer> > I mageForContainerMap;
60 58
61 SVGImage* m_svgImage; 59 SVGImage* m_svgImage;
62 ImageForContainerMap m_imageForContainerMap; 60 ImageForContainerMap m_imageForContainerMap;
63 }; 61 };
64 62
65 } // namespace WebCore 63 } // namespace WebCore
66 64
67 #endif // SVGImageCache_h 65 #endif // SVGImageCache_h
OLDNEW
« no previous file with comments | « Source/core/svg/graphics/SVGImage.h ('k') | Source/core/svg/graphics/filters/SVGFEImage.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698