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 15 matching lines...) Expand all Loading... |
26 */ | 26 */ |
27 | 27 |
28 #ifndef SVGComputedStyleDefs_h | 28 #ifndef SVGComputedStyleDefs_h |
29 #define SVGComputedStyleDefs_h | 29 #define SVGComputedStyleDefs_h |
30 | 30 |
31 #include "core/CoreExport.h" | 31 #include "core/CoreExport.h" |
32 #include "core/style/StylePath.h" | 32 #include "core/style/StylePath.h" |
33 #include "platform/Length.h" | 33 #include "platform/Length.h" |
34 #include "platform/graphics/Color.h" | 34 #include "platform/graphics/Color.h" |
35 #include "wtf/Allocator.h" | 35 #include "wtf/Allocator.h" |
| 36 #include "wtf/OwnPtr.h" |
| 37 #include "wtf/PassOwnPtr.h" |
36 #include "wtf/RefCounted.h" | 38 #include "wtf/RefCounted.h" |
37 #include "wtf/RefPtr.h" | 39 #include "wtf/RefPtr.h" |
38 #include "wtf/RefVector.h" | 40 #include "wtf/RefVector.h" |
39 #include "wtf/text/WTFString.h" | 41 #include "wtf/text/WTFString.h" |
40 | 42 |
41 namespace blink { | 43 namespace blink { |
42 | 44 |
43 typedef RefVector<Length> SVGDashArray; | 45 typedef RefVector<Length> SVGDashArray; |
44 | 46 |
45 enum SVGPaintType { | 47 enum SVGPaintType { |
(...skipping 252 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
298 Length ry; | 300 Length ry; |
299 | 301 |
300 private: | 302 private: |
301 StyleGeometryData(); | 303 StyleGeometryData(); |
302 StyleGeometryData(const StyleGeometryData&); | 304 StyleGeometryData(const StyleGeometryData&); |
303 }; | 305 }; |
304 | 306 |
305 } // namespace blink | 307 } // namespace blink |
306 | 308 |
307 #endif // SVGComputedStyleDefs_h | 309 #endif // SVGComputedStyleDefs_h |
OLD | NEW |