| 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 20 matching lines...) Expand all Loading... |
| 31 #include "core/svg/SVGLength.h" | 31 #include "core/svg/SVGLength.h" |
| 32 #include "core/svg/SVGLengthList.h" | 32 #include "core/svg/SVGLengthList.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 | 37 |
| 38 namespace blink { | 38 namespace blink { |
| 39 | 39 |
| 40 enum SVGPaintType { | 40 enum SVGPaintType { |
| 41 SVG_PAINTTYPE_UNKNOWN, | |
| 42 SVG_PAINTTYPE_RGBCOLOR, | 41 SVG_PAINTTYPE_RGBCOLOR, |
| 43 SVG_PAINTTYPE_RGBCOLOR_ICCCOLOR, | |
| 44 SVG_PAINTTYPE_NONE, | 42 SVG_PAINTTYPE_NONE, |
| 45 SVG_PAINTTYPE_CURRENTCOLOR, | 43 SVG_PAINTTYPE_CURRENTCOLOR, |
| 46 SVG_PAINTTYPE_URI_NONE, | 44 SVG_PAINTTYPE_URI_NONE, |
| 47 SVG_PAINTTYPE_URI_CURRENTCOLOR, | 45 SVG_PAINTTYPE_URI_CURRENTCOLOR, |
| 48 SVG_PAINTTYPE_URI_RGBCOLOR, | 46 SVG_PAINTTYPE_URI_RGBCOLOR, |
| 49 SVG_PAINTTYPE_URI_RGBCOLOR_ICCCOLOR, | |
| 50 SVG_PAINTTYPE_URI | 47 SVG_PAINTTYPE_URI |
| 51 }; | 48 }; |
| 52 | 49 |
| 53 enum EBaselineShift { | 50 enum EBaselineShift { |
| 54 BS_BASELINE, BS_SUB, BS_SUPER, BS_LENGTH | 51 BS_BASELINE, BS_SUB, BS_SUPER, BS_LENGTH |
| 55 }; | 52 }; |
| 56 | 53 |
| 57 enum ETextAnchor { | 54 enum ETextAnchor { |
| 58 TA_START, TA_MIDDLE, TA_END | 55 TA_START, TA_MIDDLE, TA_END |
| 59 }; | 56 }; |
| (...skipping 191 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 251 AtomicString markerEnd; | 248 AtomicString markerEnd; |
| 252 | 249 |
| 253 private: | 250 private: |
| 254 StyleInheritedResourceData(); | 251 StyleInheritedResourceData(); |
| 255 StyleInheritedResourceData(const StyleInheritedResourceData&); | 252 StyleInheritedResourceData(const StyleInheritedResourceData&); |
| 256 }; | 253 }; |
| 257 | 254 |
| 258 } // namespace blink | 255 } // namespace blink |
| 259 | 256 |
| 260 #endif // SVGRenderStyleDefs_h | 257 #endif // SVGRenderStyleDefs_h |
| OLD | NEW |