OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2006 Eric Seidel <eric@webkit.org> | 2 * Copyright (C) 2006 Eric Seidel <eric@webkit.org> |
3 * Copyright (C) 2009 Apple Inc. All rights reserved. | 3 * Copyright (C) 2009 Apple Inc. All rights reserved. |
4 * | 4 * |
5 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
6 * modification, are permitted provided that the following conditions | 6 * modification, are permitted provided that the following conditions |
7 * are met: | 7 * are met: |
8 * 1. Redistributions of source code must retain the above copyright | 8 * 1. Redistributions of source code must retain the above copyright |
9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
10 * 2. Redistributions in binary form must reproduce the above copyright | 10 * 2. Redistributions in binary form must reproduce the above copyright |
(...skipping 14 matching lines...) Expand all Loading... |
25 */ | 25 */ |
26 | 26 |
27 #ifndef SVGImage_h | 27 #ifndef SVGImage_h |
28 #define SVGImage_h | 28 #define SVGImage_h |
29 | 29 |
30 #include "core/CoreExport.h" | 30 #include "core/CoreExport.h" |
31 #include "platform/graphics/Image.h" | 31 #include "platform/graphics/Image.h" |
32 #include "platform/graphics/paint/PaintRecord.h" | 32 #include "platform/graphics/paint/PaintRecord.h" |
33 #include "platform/heap/Handle.h" | 33 #include "platform/heap/Handle.h" |
34 #include "platform/weborigin/KURL.h" | 34 #include "platform/weborigin/KURL.h" |
| 35 #include "platform/wtf/Allocator.h" |
35 #include "third_party/skia/include/core/SkRefCnt.h" | 36 #include "third_party/skia/include/core/SkRefCnt.h" |
36 #include "wtf/Allocator.h" | |
37 | 37 |
38 namespace blink { | 38 namespace blink { |
39 | 39 |
40 class Document; | 40 class Document; |
41 class Page; | 41 class Page; |
42 class PaintController; | 42 class PaintController; |
43 class LayoutReplaced; | 43 class LayoutReplaced; |
44 class SVGImageChromeClient; | 44 class SVGImageChromeClient; |
45 class SVGImageForContainer; | 45 class SVGImageForContainer; |
46 | 46 |
(...skipping 162 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
209 | 209 |
210 ~ImageObserverDisabler() { image_->SetImageObserverDisabled(false); } | 210 ~ImageObserverDisabler() { image_->SetImageObserverDisabled(false); } |
211 | 211 |
212 private: | 212 private: |
213 Image* image_; | 213 Image* image_; |
214 }; | 214 }; |
215 | 215 |
216 } // namespace blink | 216 } // namespace blink |
217 | 217 |
218 #endif // SVGImage_h | 218 #endif // SVGImage_h |
OLD | NEW |