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

Side by Side Diff: third_party/WebKit/Source/core/layout/svg/SVGLayoutSupport.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) 2007 Rob Buis <buis@kde.org> 2 * Copyright (C) 2007 Rob Buis <buis@kde.org>
3 * Copyright (C) 2007 Nikolas Zimmermann <zimmermann@kde.org> 3 * Copyright (C) 2007 Nikolas Zimmermann <zimmermann@kde.org>
4 * Copyright (C) 2007 Eric Seidel <eric@webkit.org> 4 * Copyright (C) 2007 Eric Seidel <eric@webkit.org>
5 * Copyright (C) 2009 Google, Inc. All rights reserved. 5 * Copyright (C) 2009 Google, Inc. All rights reserved.
6 * Copyright (C) Research In Motion Limited 2010. All rights reserved. 6 * Copyright (C) Research In Motion Limited 2010. All rights reserved.
7 * 7 *
8 * This library is free software; you can redistribute it and/or 8 * This library is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Library General Public 9 * modify it under the terms of the GNU Library General Public
10 * License as published by the Free Software Foundation; either 10 * License as published by the Free Software Foundation; either
(...skipping 10 matching lines...) Expand all
21 * Boston, MA 02110-1301, USA. 21 * Boston, MA 02110-1301, USA.
22 */ 22 */
23 23
24 #ifndef SVGLayoutSupport_h 24 #ifndef SVGLayoutSupport_h
25 #define SVGLayoutSupport_h 25 #define SVGLayoutSupport_h
26 26
27 #include "core/layout/LayoutObject.h" 27 #include "core/layout/LayoutObject.h"
28 #include "core/style/SVGComputedStyleDefs.h" 28 #include "core/style/SVGComputedStyleDefs.h"
29 #include "platform/graphics/DashArray.h" 29 #include "platform/graphics/DashArray.h"
30 #include "platform/transforms/AffineTransform.h" 30 #include "platform/transforms/AffineTransform.h"
31 #include "wtf/Allocator.h" 31 #include "platform/wtf/Allocator.h"
32 32
33 namespace blink { 33 namespace blink {
34 34
35 class AffineTransform; 35 class AffineTransform;
36 class FloatPoint; 36 class FloatPoint;
37 class FloatRect; 37 class FloatRect;
38 class LayoutRect; 38 class LayoutRect;
39 class LayoutGeometryMap; 39 class LayoutGeometryMap;
40 class LayoutBoxModelObject; 40 class LayoutBoxModelObject;
41 class LayoutObject; 41 class LayoutObject;
(...skipping 178 matching lines...) Expand 10 before | Expand all | Expand 10 after
220 if (child->HasNonIsolatedBlendingDescendants() && 220 if (child->HasNonIsolatedBlendingDescendants() &&
221 !WillIsolateBlendingDescendantsForObject(child)) 221 !WillIsolateBlendingDescendantsForObject(child))
222 return true; 222 return true;
223 } 223 }
224 return false; 224 return false;
225 } 225 }
226 226
227 } // namespace blink 227 } // namespace blink
228 228
229 #endif // SVGLayoutSupport_h 229 #endif // SVGLayoutSupport_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698