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

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

Issue 203723007: Store marker identifiers as AtomicString (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 9 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 239 matching lines...) Expand 10 before | Expand all | Expand 10 after
250 public: 250 public:
251 static PassRefPtr<StyleInheritedResourceData> create() { return adoptRef (new StyleInheritedResourceData); } 251 static PassRefPtr<StyleInheritedResourceData> create() { return adoptRef (new StyleInheritedResourceData); }
252 PassRefPtr<StyleInheritedResourceData> copy() const { return adoptRef(ne w StyleInheritedResourceData(*this)); } 252 PassRefPtr<StyleInheritedResourceData> copy() const { return adoptRef(ne w StyleInheritedResourceData(*this)); }
253 253
254 bool operator==(const StyleInheritedResourceData&) const; 254 bool operator==(const StyleInheritedResourceData&) const;
255 bool operator!=(const StyleInheritedResourceData& other) const 255 bool operator!=(const StyleInheritedResourceData& other) const
256 { 256 {
257 return !(*this == other); 257 return !(*this == other);
258 } 258 }
259 259
260 String markerStart; 260 AtomicString markerStart;
261 String markerMid; 261 AtomicString markerMid;
262 String markerEnd; 262 AtomicString markerEnd;
263 263
264 private: 264 private:
265 StyleInheritedResourceData(); 265 StyleInheritedResourceData();
266 StyleInheritedResourceData(const StyleInheritedResourceData&); 266 StyleInheritedResourceData(const StyleInheritedResourceData&);
267 }; 267 };
268 268
269 } // namespace WebCore 269 } // namespace WebCore
270 270
271 #endif // SVGRenderStyleDefs_h 271 #endif // SVGRenderStyleDefs_h
OLDNEW
« no previous file with comments | « Source/core/rendering/style/SVGRenderStyle.h ('k') | Source/core/rendering/svg/SVGResources.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698