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

Side by Side Diff: Source/core/rendering/style/SVGRenderStyleDefs.h

Issue 121173004: Make calls to AtomicString(const String&) explicit in svg/ (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Take feedback into consideration Created 6 years, 11 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 217 matching lines...) Expand 10 before | Expand all | Expand 10 after
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
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
OLDNEW
« no previous file with comments | « Source/core/rendering/style/SVGRenderStyle.h ('k') | Source/core/rendering/svg/ReferenceFilterBuilder.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698