| 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 2004, 2005 Rob Buis <buis@kde.org> | 3 2004, 2005 Rob Buis <buis@kde.org> |
| 4 Copyright (C) Research In Motion Limited 2010. All rights reserved. | 4 Copyright (C) Research In Motion Limited 2010. All rights reserved. |
| 5 | 5 |
| 6 Based on khtml code by: | 6 Based on khtml code by: |
| 7 Copyright (C) 2000-2003 Lars Knoll (knoll@kde.org) | 7 Copyright (C) 2000-2003 Lars Knoll (knoll@kde.org) |
| 8 (C) 2000 Antti Koivisto (koivisto@kde.org) | 8 (C) 2000 Antti Koivisto (koivisto@kde.org) |
| 9 (C) 2000-2003 Dirk Mueller (mueller@kde.org) | 9 (C) 2000-2003 Dirk Mueller (mueller@kde.org) |
| 10 (C) 2002-2003 Apple Computer, Inc. | 10 (C) 2002-2003 Apple Computer, Inc. |
| 11 | 11 |
| 12 This library is free software; you can redistribute it and/or | 12 This library is free software; you can redistribute it and/or |
| 13 modify it under the terms of the GNU Library General Public | 13 modify it under the terms of the GNU Library General Public |
| 14 License as published by the Free Software Foundation; either | 14 License as published by the Free Software Foundation; either |
| 15 version 2 of the License, or (at your option) any later version. | 15 version 2 of the License, or (at your option) any later version. |
| 16 | 16 |
| 17 This library is distributed in the hope that it will be useful, | 17 This library is distributed in the hope that it will be useful, |
| 18 but WITHOUT ANY WARRANTY; without even the implied warranty of | 18 but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 19 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | 19 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 20 Library General Public License for more details. | 20 Library General Public License for more details. |
| 21 | 21 |
| 22 You should have received a copy of the GNU Library General Public License | 22 You should have received a copy of the GNU Library General Public License |
| 23 along with this library; see the file COPYING.LIB. If not, write to | 23 along with this library; see the file COPYING.LIB. If not, write to |
| 24 the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | 24 the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
| 25 Boston, MA 02110-1301, USA. | 25 Boston, MA 02110-1301, USA. |
| 26 */ | 26 */ |
| 27 | 27 |
| 28 #ifndef SVGLayoutStyleDefs_h | 28 #ifndef SVGComputedStyleDefs_h |
| 29 #define SVGLayoutStyleDefs_h | 29 #define SVGComputedStyleDefs_h |
| 30 | 30 |
| 31 #include "platform/Length.h" | 31 #include "platform/Length.h" |
| 32 #include "platform/graphics/Color.h" | 32 #include "platform/graphics/Color.h" |
| 33 #include "wtf/OwnPtr.h" | 33 #include "wtf/OwnPtr.h" |
| 34 #include "wtf/PassOwnPtr.h" | 34 #include "wtf/PassOwnPtr.h" |
| 35 #include "wtf/RefCounted.h" | 35 #include "wtf/RefCounted.h" |
| 36 #include "wtf/RefPtr.h" | 36 #include "wtf/RefPtr.h" |
| 37 #include "wtf/RefVector.h" | 37 #include "wtf/RefVector.h" |
| 38 #include "wtf/text/WTFString.h" | 38 #include "wtf/text/WTFString.h" |
| 39 | 39 |
| (...skipping 255 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 295 Length r; | 295 Length r; |
| 296 Length rx; | 296 Length rx; |
| 297 Length ry; | 297 Length ry; |
| 298 private: | 298 private: |
| 299 StyleLayoutData(); | 299 StyleLayoutData(); |
| 300 StyleLayoutData(const StyleLayoutData&); | 300 StyleLayoutData(const StyleLayoutData&); |
| 301 }; | 301 }; |
| 302 | 302 |
| 303 } // namespace blink | 303 } // namespace blink |
| 304 | 304 |
| 305 #endif // SVGLayoutStyleDefs_h | 305 #endif // SVGComputedStyleDefs_h |
| OLD | NEW |