OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2004, 2005, 2007 Nikolas Zimmermann <zimmermann@kde.org> | 2 * Copyright (C) 2004, 2005, 2007 Nikolas Zimmermann <zimmermann@kde.org> |
3 * Copyright (C) 2004, 2005, 2008 Rob Buis <buis@kde.org> | 3 * Copyright (C) 2004, 2005, 2008 Rob Buis <buis@kde.org> |
4 * Copyright (C) 2005, 2007 Eric Seidel <eric@webkit.org> | 4 * Copyright (C) 2005, 2007 Eric Seidel <eric@webkit.org> |
5 * Copyright (C) 2009 Google, Inc. | 5 * Copyright (C) 2009 Google, Inc. |
6 * Copyright (C) 2009 Dirk Schulze <krit@webkit.org> | 6 * Copyright (C) 2009 Dirk Schulze <krit@webkit.org> |
7 * Copyright (C) Research In Motion Limited 2010. All rights reserved. | 7 * Copyright (C) Research In Motion Limited 2010. All rights reserved. |
8 * Copyright (C) 2009 Jeff Schiller <codedread@gmail.com> | 8 * Copyright (C) 2009 Jeff Schiller <codedread@gmail.com> |
9 * Copyright (C) 2011 Renata Hodovan <reni@webkit.org> | 9 * Copyright (C) 2011 Renata Hodovan <reni@webkit.org> |
10 * Copyright (C) 2011 University of Szeged | 10 * Copyright (C) 2011 University of Szeged |
(...skipping 284 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
295 paintInvalidationContainer, paintInvalidationState, strokeWidthForHairli
nePadding); | 295 paintInvalidationContainer, paintInvalidationState, strokeWidthForHairli
nePadding); |
296 } | 296 } |
297 | 297 |
298 LayoutSVGShapeRareData& LayoutSVGShape::ensureRareData() const | 298 LayoutSVGShapeRareData& LayoutSVGShape::ensureRareData() const |
299 { | 299 { |
300 if (!m_rareData) | 300 if (!m_rareData) |
301 m_rareData = adoptPtr(new LayoutSVGShapeRareData()); | 301 m_rareData = adoptPtr(new LayoutSVGShapeRareData()); |
302 return *m_rareData.get(); | 302 return *m_rareData.get(); |
303 } | 303 } |
304 | 304 |
305 } | 305 } // namespace blink |
OLD | NEW |