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

Side by Side Diff: Source/core/layout/style/SVGLayoutStyleDefs.h

Issue 980233002: [svg2] Make 'cx', 'cy' and 'r' presentation attributes (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: rebase Created 5 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 270 matching lines...) Expand 10 before | Expand all | Expand 10 after
281 // Positioning and sizing properties. 281 // Positioning and sizing properties.
282 class StyleLayoutData : public RefCounted<StyleLayoutData> { 282 class StyleLayoutData : public RefCounted<StyleLayoutData> {
283 public: 283 public:
284 static PassRefPtr<StyleLayoutData> create() { return adoptRef(new StyleL ayoutData); } 284 static PassRefPtr<StyleLayoutData> create() { return adoptRef(new StyleL ayoutData); }
285 PassRefPtr<StyleLayoutData> copy() const; 285 PassRefPtr<StyleLayoutData> copy() const;
286 bool operator==(const StyleLayoutData&) const; 286 bool operator==(const StyleLayoutData&) const;
287 bool operator!=(const StyleLayoutData& other) const 287 bool operator!=(const StyleLayoutData& other) const
288 { 288 {
289 return !(*this == other); 289 return !(*this == other);
290 } 290 }
291 Length cx;
292 Length cy;
291 Length x; 293 Length x;
292 Length y; 294 Length y;
295 Length r;
293 Length rx; 296 Length rx;
294 Length ry; 297 Length ry;
295 private: 298 private:
296 StyleLayoutData(); 299 StyleLayoutData();
297 StyleLayoutData(const StyleLayoutData&); 300 StyleLayoutData(const StyleLayoutData&);
298 }; 301 };
299 302
300 } // namespace blink 303 } // namespace blink
301 304
302 #endif // SVGLayoutStyleDefs_h 305 #endif // SVGLayoutStyleDefs_h
OLDNEW
« no previous file with comments | « Source/core/layout/style/SVGLayoutStyle.cpp ('k') | Source/core/layout/style/SVGLayoutStyleDefs.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698