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

Side by Side Diff: third_party/WebKit/Source/core/layout/LayoutImageResourceStyleImage.h

Issue 2809363002: Rewrite references to "wtf/" to "platform/wtf/" in core/layout. (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) 1999 Lars Knoll <knoll@kde.org> 2 * Copyright (C) 1999 Lars Knoll <knoll@kde.org>
3 * Copyright (C) 1999 Antti Koivisto <koivisto@kde.org> 3 * Copyright (C) 1999 Antti Koivisto <koivisto@kde.org>
4 * Copyright (C) 2006 Allan Sandfeld Jensen <kde@carewolf.com> 4 * Copyright (C) 2006 Allan Sandfeld Jensen <kde@carewolf.com>
5 * Copyright (C) 2006 Samuel Weinig <sam.weinig@gmail.com> 5 * Copyright (C) 2006 Samuel Weinig <sam.weinig@gmail.com>
6 * Copyright (C) 2004, 2005, 2006, 2007, 2009, 2010 Apple Inc. 6 * Copyright (C) 2004, 2005, 2006, 2007, 2009, 2010 Apple Inc.
7 * All rights reserved. 7 * All rights reserved.
8 * Copyright (C) 2010 Patrick Gansterer <paroga@paroga.com> 8 * Copyright (C) 2010 Patrick Gansterer <paroga@paroga.com>
9 * 9 *
10 * This library is free software; you can redistribute it and/or 10 * This library is free software; you can redistribute it and/or
(...skipping 11 matching lines...) Expand all
22 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, 22 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
23 * Boston, MA 02110-1301, USA. 23 * Boston, MA 02110-1301, USA.
24 * 24 *
25 */ 25 */
26 26
27 #ifndef LayoutImageResourceStyleImage_h 27 #ifndef LayoutImageResourceStyleImage_h
28 #define LayoutImageResourceStyleImage_h 28 #define LayoutImageResourceStyleImage_h
29 29
30 #include "core/layout/LayoutImageResource.h" 30 #include "core/layout/LayoutImageResource.h"
31 #include "core/style/StyleImage.h" 31 #include "core/style/StyleImage.h"
32 #include "wtf/RefPtr.h" 32 #include "platform/wtf/RefPtr.h"
33 33
34 namespace blink { 34 namespace blink {
35 35
36 class LayoutObject; 36 class LayoutObject;
37 37
38 class LayoutImageResourceStyleImage final : public LayoutImageResource { 38 class LayoutImageResourceStyleImage final : public LayoutImageResource {
39 public: 39 public:
40 ~LayoutImageResourceStyleImage() override; 40 ~LayoutImageResourceStyleImage() override;
41 41
42 static LayoutImageResource* Create(StyleImage* style_image) { 42 static LayoutImageResource* Create(StyleImage* style_image) {
(...skipping 15 matching lines...) Expand all
58 DECLARE_VIRTUAL_TRACE(); 58 DECLARE_VIRTUAL_TRACE();
59 59
60 private: 60 private:
61 explicit LayoutImageResourceStyleImage(StyleImage*); 61 explicit LayoutImageResourceStyleImage(StyleImage*);
62 Member<StyleImage> style_image_; 62 Member<StyleImage> style_image_;
63 }; 63 };
64 64
65 } // namespace blink 65 } // namespace blink
66 66
67 #endif // LayoutImageStyleImage_h 67 #endif // LayoutImageStyleImage_h
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/layout/LayoutGrid.cpp ('k') | third_party/WebKit/Source/core/layout/LayoutListItem.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698