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 217 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
228 public: | 228 public: |
229 static PassRefPtr<StyleResourceData> create() { return adoptRef(new Styl
eResourceData); } | 229 static PassRefPtr<StyleResourceData> create() { return adoptRef(new Styl
eResourceData); } |
230 PassRefPtr<StyleResourceData> copy() const { return adoptRef(new StyleRe
sourceData(*this)); } | 230 PassRefPtr<StyleResourceData> copy() const { return adoptRef(new StyleRe
sourceData(*this)); } |
231 | 231 |
232 bool operator==(const StyleResourceData&) const; | 232 bool operator==(const StyleResourceData&) const; |
233 bool operator!=(const StyleResourceData& other) const | 233 bool operator!=(const StyleResourceData& other) const |
234 { | 234 { |
235 return !(*this == other); | 235 return !(*this == other); |
236 } | 236 } |
237 | 237 |
238 String clipper; | 238 AtomicString clipper; |
239 String filter; | 239 AtomicString filter; |
240 String masker; | 240 AtomicString masker; |
241 | 241 |
242 private: | 242 private: |
243 StyleResourceData(); | 243 StyleResourceData(); |
244 StyleResourceData(const StyleResourceData&); | 244 StyleResourceData(const StyleResourceData&); |
245 }; | 245 }; |
246 | 246 |
247 // Inherited resources | 247 // Inherited resources |
248 class StyleInheritedResourceData : public RefCounted<StyleInheritedResourceD
ata> { | 248 class StyleInheritedResourceData : public RefCounted<StyleInheritedResourceD
ata> { |
249 public: | 249 public: |
250 static PassRefPtr<StyleInheritedResourceData> create() { return adoptRef
(new StyleInheritedResourceData); } | 250 static PassRefPtr<StyleInheritedResourceData> create() { return adoptRef
(new StyleInheritedResourceData); } |
(...skipping 10 matching lines...) Expand all Loading... |
261 String markerEnd; | 261 String markerEnd; |
262 | 262 |
263 private: | 263 private: |
264 StyleInheritedResourceData(); | 264 StyleInheritedResourceData(); |
265 StyleInheritedResourceData(const StyleInheritedResourceData&); | 265 StyleInheritedResourceData(const StyleInheritedResourceData&); |
266 }; | 266 }; |
267 | 267 |
268 } // namespace WebCore | 268 } // namespace WebCore |
269 | 269 |
270 #endif // SVGRenderStyleDefs_h | 270 #endif // SVGRenderStyleDefs_h |
OLD | NEW |