Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(314)

Side by Side Diff: third_party/WebKit/Source/core/style/SVGComputedStyleDefs.h

Issue 1987943002: [wip] unprefix filter Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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
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
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/style/SVGComputedStyle.h ('k') | third_party/WebKit/Source/core/style/SVGComputedStyleDefs.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698