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 239 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
250 public: | 250 public: |
251 static PassRefPtr<StyleInheritedResourceData> create() { return adoptRef
(new StyleInheritedResourceData); } | 251 static PassRefPtr<StyleInheritedResourceData> create() { return adoptRef
(new StyleInheritedResourceData); } |
252 PassRefPtr<StyleInheritedResourceData> copy() const { return adoptRef(ne
w StyleInheritedResourceData(*this)); } | 252 PassRefPtr<StyleInheritedResourceData> copy() const { return adoptRef(ne
w StyleInheritedResourceData(*this)); } |
253 | 253 |
254 bool operator==(const StyleInheritedResourceData&) const; | 254 bool operator==(const StyleInheritedResourceData&) const; |
255 bool operator!=(const StyleInheritedResourceData& other) const | 255 bool operator!=(const StyleInheritedResourceData& other) const |
256 { | 256 { |
257 return !(*this == other); | 257 return !(*this == other); |
258 } | 258 } |
259 | 259 |
260 String markerStart; | 260 AtomicString markerStart; |
261 String markerMid; | 261 AtomicString markerMid; |
262 String markerEnd; | 262 AtomicString markerEnd; |
263 | 263 |
264 private: | 264 private: |
265 StyleInheritedResourceData(); | 265 StyleInheritedResourceData(); |
266 StyleInheritedResourceData(const StyleInheritedResourceData&); | 266 StyleInheritedResourceData(const StyleInheritedResourceData&); |
267 }; | 267 }; |
268 | 268 |
269 } // namespace WebCore | 269 } // namespace WebCore |
270 | 270 |
271 #endif // SVGRenderStyleDefs_h | 271 #endif // SVGRenderStyleDefs_h |
OLD | NEW |