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

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

Issue 2813413002: Rewrite references to "wtf/" to "platform/wtf/" in core/svg. (Closed)
Patch Set: Created 3 years, 8 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 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
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
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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698