| 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 Rob Buis <buis@kde.org> | 3 * Copyright (C) 2004, 2005 Rob Buis <buis@kde.org> |
| 4 * Copyright (C) 2005 Eric Seidel <eric@webkit.org> | 4 * Copyright (C) 2005 Eric Seidel <eric@webkit.org> |
| 5 * Copyright (C) 2006 Apple Computer, Inc | 5 * Copyright (C) 2006 Apple Computer, Inc |
| 6 * Copyright (C) 2009 Google, Inc. | 6 * Copyright (C) 2009 Google, Inc. |
| 7 * Copyright (C) 2011 Renata Hodovan <reni@webkit.org> | 7 * Copyright (C) 2011 Renata Hodovan <reni@webkit.org> |
| 8 * Copyright (C) 2011 University of Szeged | 8 * Copyright (C) 2011 University of Szeged |
| 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 125 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 136 OwnPtr<Path> m_path; | 136 OwnPtr<Path> m_path; |
| 137 mutable OwnPtr<LayoutSVGShapeRareData> m_rareData; | 137 mutable OwnPtr<LayoutSVGShapeRareData> m_rareData; |
| 138 | 138 |
| 139 bool m_needsBoundariesUpdate : 1; | 139 bool m_needsBoundariesUpdate : 1; |
| 140 bool m_needsShapeUpdate : 1; | 140 bool m_needsShapeUpdate : 1; |
| 141 bool m_needsTransformUpdate : 1; | 141 bool m_needsTransformUpdate : 1; |
| 142 }; | 142 }; |
| 143 | 143 |
| 144 DEFINE_LAYOUT_OBJECT_TYPE_CASTS(LayoutSVGShape, isSVGShape()); | 144 DEFINE_LAYOUT_OBJECT_TYPE_CASTS(LayoutSVGShape, isSVGShape()); |
| 145 | 145 |
| 146 } | 146 } // namespace blink |
| 147 | 147 |
| 148 #endif | 148 #endif |
| OLD | NEW |