| 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 233 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 244 static PassRefPtr<StyleResourceData> create() { return adoptRef(new StyleRes
ourceData); } | 244 static PassRefPtr<StyleResourceData> create() { return adoptRef(new StyleRes
ourceData); } |
| 245 PassRefPtr<StyleResourceData> copy() const { return adoptRef(new StyleResour
ceData(*this)); } | 245 PassRefPtr<StyleResourceData> copy() const { return adoptRef(new StyleResour
ceData(*this)); } |
| 246 | 246 |
| 247 bool operator==(const StyleResourceData&) const; | 247 bool operator==(const StyleResourceData&) const; |
| 248 bool operator!=(const StyleResourceData& other) const | 248 bool operator!=(const StyleResourceData& other) const |
| 249 { | 249 { |
| 250 return !(*this == other); | 250 return !(*this == other); |
| 251 } | 251 } |
| 252 | 252 |
| 253 AtomicString clipper; | 253 AtomicString clipper; |
| 254 AtomicString filter; | |
| 255 AtomicString masker; | 254 AtomicString masker; |
| 256 | 255 |
| 257 private: | 256 private: |
| 258 StyleResourceData(); | 257 StyleResourceData(); |
| 259 StyleResourceData(const StyleResourceData&); | 258 StyleResourceData(const StyleResourceData&); |
| 260 }; | 259 }; |
| 261 | 260 |
| 262 // Inherited resources | 261 // Inherited resources |
| 263 class StyleInheritedResourceData : public RefCounted<StyleInheritedResourceData>
{ | 262 class StyleInheritedResourceData : public RefCounted<StyleInheritedResourceData>
{ |
| 264 public: | 263 public: |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 299 Length rx; | 298 Length rx; |
| 300 Length ry; | 299 Length ry; |
| 301 private: | 300 private: |
| 302 StyleLayoutData(); | 301 StyleLayoutData(); |
| 303 StyleLayoutData(const StyleLayoutData&); | 302 StyleLayoutData(const StyleLayoutData&); |
| 304 }; | 303 }; |
| 305 | 304 |
| 306 } // namespace blink | 305 } // namespace blink |
| 307 | 306 |
| 308 #endif // SVGComputedStyleDefs_h | 307 #endif // SVGComputedStyleDefs_h |
| OLD | NEW |