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

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

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
« no previous file with comments | « Source/core/svg/SVGMPathElement.cpp ('k') | Source/core/svg/SVGPolyElement.cpp » ('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, 2008 Nikolas Zimmermann <zimmermann@kde.org> 2 * Copyright (C) 2004, 2005, 2006, 2008 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 * 4 *
5 * This library is free software; you can redistribute it and/or 5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Library General Public 6 * modify it under the terms of the GNU Library General Public
7 * License as published by the Free Software Foundation; either 7 * License as published by the Free Software Foundation; either
8 * version 2 of the License, or (at your option) any later version. 8 * version 2 of the License, or (at your option) any later version.
9 * 9 *
10 * This library is distributed in the hope that it will be useful, 10 * This library is distributed in the hope that it will be useful,
(...skipping 309 matching lines...) Expand 10 before | Expand all | Expand 10 after
320 return SVGAnimatedProperty::lookupOrCreateWrapper<SVGPathElement, SVGAnimate dPathSegListPropertyTearOff, SVGPathSegList> 320 return SVGAnimatedProperty::lookupOrCreateWrapper<SVGPathElement, SVGAnimate dPathSegListPropertyTearOff, SVGPathSegList>
321 (ownerType, dPropertyInfo(), ownerType->m_pathSegList.value); 321 (ownerType, dPropertyInfo(), ownerType->m_pathSegList.value);
322 } 322 }
323 323
324 void SVGPathElement::synchronizeD(SVGElement* contextElement) 324 void SVGPathElement::synchronizeD(SVGElement* contextElement)
325 { 325 {
326 ASSERT(contextElement); 326 ASSERT(contextElement);
327 SVGPathElement* ownerType = toSVGPathElement(contextElement); 327 SVGPathElement* ownerType = toSVGPathElement(contextElement);
328 if (!ownerType->m_pathSegList.shouldSynchronize) 328 if (!ownerType->m_pathSegList.shouldSynchronize)
329 return; 329 return;
330 ownerType->m_pathSegList.synchronize(ownerType, dPropertyInfo()->attributeNa me, ownerType->m_pathSegList.value.valueAsString()); 330 ownerType->m_pathSegList.synchronize(ownerType, dPropertyInfo()->attributeNa me, AtomicString(ownerType->m_pathSegList.value.valueAsString()));
331 } 331 }
332 332
333 SVGPathSegListPropertyTearOff* SVGPathElement::pathSegList() 333 SVGPathSegListPropertyTearOff* SVGPathElement::pathSegList()
334 { 334 {
335 m_pathSegList.shouldSynchronize = true; 335 m_pathSegList.shouldSynchronize = true;
336 return static_cast<SVGPathSegListPropertyTearOff*>(static_pointer_cast<SVGAn imatedPathSegListPropertyTearOff>(lookupOrCreateDWrapper(this))->baseVal()); 336 return static_cast<SVGPathSegListPropertyTearOff*>(static_pointer_cast<SVGAn imatedPathSegListPropertyTearOff>(lookupOrCreateDWrapper(this))->baseVal());
337 } 337 }
338 338
339 SVGPathSegListPropertyTearOff* SVGPathElement::normalizedPathSegList() 339 SVGPathSegListPropertyTearOff* SVGPathElement::normalizedPathSegList()
340 { 340 {
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after
397 return renderer->path().boundingRect(); 397 return renderer->path().boundingRect();
398 } 398 }
399 399
400 RenderObject* SVGPathElement::createRenderer(RenderStyle*) 400 RenderObject* SVGPathElement::createRenderer(RenderStyle*)
401 { 401 {
402 // By default, any subclass is expected to do path-based drawing 402 // By default, any subclass is expected to do path-based drawing
403 return new RenderSVGPath(this); 403 return new RenderSVGPath(this);
404 } 404 }
405 405
406 } 406 }
OLDNEW
« no previous file with comments | « Source/core/svg/SVGMPathElement.cpp ('k') | Source/core/svg/SVGPolyElement.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698