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