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 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
300 Length ry; | 299 Length ry; |
301 | 300 |
302 private: | 301 private: |
303 StyleGeometryData(); | 302 StyleGeometryData(); |
304 StyleGeometryData(const StyleGeometryData&); | 303 StyleGeometryData(const StyleGeometryData&); |
305 }; | 304 }; |
306 | 305 |
307 } // namespace blink | 306 } // namespace blink |
308 | 307 |
309 #endif // SVGComputedStyleDefs_h | 308 #endif // SVGComputedStyleDefs_h |
OLD | NEW |