| OLD | NEW |
| 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 17 matching lines...) Expand all Loading... |
| 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 "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 PaintInvalidationState; | |
| 39 class LayoutRect; | 38 class LayoutRect; |
| 40 class LayoutGeometryMap; | 39 class LayoutGeometryMap; |
| 41 class LayoutBoxModelObject; | 40 class LayoutBoxModelObject; |
| 42 class LayoutObject; | 41 class LayoutObject; |
| 43 class ComputedStyle; | 42 class ComputedStyle; |
| 44 class LayoutSVGRoot; | 43 class LayoutSVGRoot; |
| 45 class SVGLengthContext; | 44 class SVGLengthContext; |
| 46 class StrokeData; | 45 class StrokeData; |
| 47 class TransformState; | 46 class TransformState; |
| 48 | 47 |
| (...skipping 173 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 222 if (child->hasNonIsolatedBlendingDescendants() && | 221 if (child->hasNonIsolatedBlendingDescendants() && |
| 223 !willIsolateBlendingDescendantsForObject(child)) | 222 !willIsolateBlendingDescendantsForObject(child)) |
| 224 return true; | 223 return true; |
| 225 } | 224 } |
| 226 return false; | 225 return false; |
| 227 } | 226 } |
| 228 | 227 |
| 229 } // namespace blink | 228 } // namespace blink |
| 230 | 229 |
| 231 #endif // SVGLayoutSupport_h | 230 #endif // SVGLayoutSupport_h |
| OLD | NEW |