| 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. |
| (...skipping 13 matching lines...) Expand all Loading... |
| 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 SVGRenderStyleDefs_h | 28 #ifndef SVGRenderStyleDefs_h |
| 29 #define SVGRenderStyleDefs_h | 29 #define SVGRenderStyleDefs_h |
| 30 | 30 |
| 31 #include "core/rendering/style/ShadowData.h" | 31 #include "core/rendering/style/ShadowData.h" |
| 32 #include "core/svg/SVGLength.h" | 32 #include "core/svg/SVGLength.h" |
| 33 #include "core/svg/SVGPaint.h" | 33 #include "core/svg/SVGPaint.h" |
| 34 #include <wtf/OwnPtr.h> | 34 #include "wtf/OwnPtr.h" |
| 35 #include <wtf/PassOwnPtr.h> | 35 #include "wtf/PassOwnPtr.h" |
| 36 #include <wtf/RefCounted.h> | 36 #include "wtf/RefCounted.h" |
| 37 #include <wtf/RefPtr.h> | 37 #include "wtf/RefPtr.h" |
| 38 | 38 |
| 39 namespace WebCore { | 39 namespace WebCore { |
| 40 | 40 |
| 41 enum EBaselineShift { | 41 enum EBaselineShift { |
| 42 BS_BASELINE, BS_SUB, BS_SUPER, BS_LENGTH | 42 BS_BASELINE, BS_SUB, BS_SUPER, BS_LENGTH |
| 43 }; | 43 }; |
| 44 | 44 |
| 45 enum ETextAnchor { | 45 enum ETextAnchor { |
| 46 TA_START, TA_MIDDLE, TA_END | 46 TA_START, TA_MIDDLE, TA_END |
| 47 }; | 47 }; |
| (...skipping 221 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 269 String markerEnd; | 269 String markerEnd; |
| 270 | 270 |
| 271 private: | 271 private: |
| 272 StyleInheritedResourceData(); | 272 StyleInheritedResourceData(); |
| 273 StyleInheritedResourceData(const StyleInheritedResourceData&); | 273 StyleInheritedResourceData(const StyleInheritedResourceData&); |
| 274 }; | 274 }; |
| 275 | 275 |
| 276 } // namespace WebCore | 276 } // namespace WebCore |
| 277 | 277 |
| 278 #endif // SVGRenderStyleDefs_h | 278 #endif // SVGRenderStyleDefs_h |
| OLD | NEW |