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

Side by Side Diff: Source/core/svg/SVGLength.cpp

Issue 148523016: Move most of the [Pass]RefPtr's of CSSPrimitiveValue to our transition types. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Sync to latest change Created 6 years, 10 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 | Annotate | Revision Log
« no previous file with comments | « Source/core/svg/SVGLength.h ('k') | Source/heap/Handle.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2004, 2005, 2006 Nikolas Zimmermann <zimmermann@kde.org> 2 * Copyright (C) 2004, 2005, 2006 Nikolas Zimmermann <zimmermann@kde.org>
3 * Copyright (C) 2004, 2005, 2006, 2007 Rob Buis <buis@kde.org> 3 * Copyright (C) 2004, 2005, 2006, 2007 Rob Buis <buis@kde.org>
4 * Copyright (C) 2007 Apple Inc. All rights reserved. 4 * Copyright (C) 2007 Apple Inc. All rights reserved.
5 * 5 *
6 * This library is free software; you can redistribute it and/or 6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Library General Public 7 * modify it under the terms of the GNU Library General Public
8 * License as published by the Free Software Foundation; either 8 * License as published by the Free Software Foundation; either
9 * version 2 of the License, or (at your option) any later version. 9 * version 2 of the License, or (at your option) any later version.
10 * 10 *
(...skipping 285 matching lines...) Expand 10 before | Expand all | Expand 10 after
296 }; 296 };
297 297
298 if (svgType == LengthTypeUnknown) 298 if (svgType == LengthTypeUnknown)
299 return SVGLength::create(); 299 return SVGLength::create();
300 300
301 RefPtr<SVGLength> length = SVGLength::create(); 301 RefPtr<SVGLength> length = SVGLength::create();
302 length->newValueSpecifiedUnits(svgType, value->getFloatValue()); 302 length->newValueSpecifiedUnits(svgType, value->getFloatValue());
303 return length.release(); 303 return length.release();
304 } 304 }
305 305
306 PassRefPtr<CSSPrimitiveValue> SVGLength::toCSSPrimitiveValue(PassRefPtr<SVGLengt h> passLength) 306 PassRefPtrWillBeRawPtr<CSSPrimitiveValue> SVGLength::toCSSPrimitiveValue(PassRef Ptr<SVGLength> passLength)
307 { 307 {
308 RefPtr<SVGLength> length = passLength; 308 RefPtr<SVGLength> length = passLength;
309 309
310 CSSPrimitiveValue::UnitTypes cssType = CSSPrimitiveValue::CSS_UNKNOWN; 310 CSSPrimitiveValue::UnitTypes cssType = CSSPrimitiveValue::CSS_UNKNOWN;
311 switch (length->unitType()) { 311 switch (length->unitType()) {
312 case LengthTypeUnknown: 312 case LengthTypeUnknown:
313 break; 313 break;
314 case LengthTypeNumber: 314 case LengthTypeNumber:
315 cssType = CSSPrimitiveValue::CSS_NUMBER; 315 cssType = CSSPrimitiveValue::CSS_NUMBER;
316 break; 316 break;
(...skipping 141 matching lines...) Expand 10 before | Expand all | Expand 10 after
458 458
459 float SVGLength::calculateDistance(PassRefPtr<NewSVGPropertyBase> toValue, SVGEl ement* contextElement) 459 float SVGLength::calculateDistance(PassRefPtr<NewSVGPropertyBase> toValue, SVGEl ement* contextElement)
460 { 460 {
461 SVGLengthContext lengthContext(contextElement); 461 SVGLengthContext lengthContext(contextElement);
462 RefPtr<SVGLength> toLength = toSVGLength(toValue); 462 RefPtr<SVGLength> toLength = toSVGLength(toValue);
463 463
464 return fabsf(toLength->value(lengthContext, IGNORE_EXCEPTION) - value(length Context, IGNORE_EXCEPTION)); 464 return fabsf(toLength->value(lengthContext, IGNORE_EXCEPTION) - value(length Context, IGNORE_EXCEPTION));
465 } 465 }
466 466
467 } 467 }
OLDNEW
« no previous file with comments | « Source/core/svg/SVGLength.h ('k') | Source/heap/Handle.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698