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

Side by Side Diff: third_party/WebKit/Source/core/svg/SVGSVGElement.cpp

Issue 2068053002: Rename Blink constants generated from IDL files. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 4 years, 4 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, 2006 Nikolas Zimmermann <zimmermann@kde.org> 2 * Copyright (C) 2004, 2005, 2006 Nikolas Zimmermann <zimmermann@kde.org>
3 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2010 Rob Buis <buis@kde.org> 3 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2010 Rob Buis <buis@kde.org>
4 * Copyright (C) 2007 Apple Inc. All rights reserved. 4 * Copyright (C) 2007 Apple Inc. All rights reserved.
5 * Copyright (C) 2014 Google, Inc. 5 * Copyright (C) 2014 Google, Inc.
6 * 6 *
7 * This library is free software; you can redistribute it and/or 7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Library General Public 8 * modify it under the terms of the GNU Library General Public
9 * License as published by the Free Software Foundation; either 9 * License as published by the Free Software Foundation; either
10 * version 2 of the License, or (at your option) any later version. 10 * version 2 of the License, or (at your option) any later version.
(...skipping 406 matching lines...) Expand 10 before | Expand all | Expand 10 after
417 return SVGMatrixTearOff::create(AffineTransform()); 417 return SVGMatrixTearOff::create(AffineTransform());
418 } 418 }
419 419
420 SVGRectTearOff* SVGSVGElement::createSVGRect() 420 SVGRectTearOff* SVGSVGElement::createSVGRect()
421 { 421 {
422 return SVGRectTearOff::create(SVGRect::create(), 0, PropertyIsNotAnimVal); 422 return SVGRectTearOff::create(SVGRect::create(), 0, PropertyIsNotAnimVal);
423 } 423 }
424 424
425 SVGTransformTearOff* SVGSVGElement::createSVGTransform() 425 SVGTransformTearOff* SVGSVGElement::createSVGTransform()
426 { 426 {
427 return SVGTransformTearOff::create(SVGTransform::create(SVG_TRANSFORM_MATRIX ), 0, PropertyIsNotAnimVal); 427 return SVGTransformTearOff::create(SVGTransform::create(kSvgTransformMatrix) , 0, PropertyIsNotAnimVal);
428 } 428 }
429 429
430 SVGTransformTearOff* SVGSVGElement::createSVGTransformFromMatrix(SVGMatrixTearOf f* matrix) 430 SVGTransformTearOff* SVGSVGElement::createSVGTransformFromMatrix(SVGMatrixTearOf f* matrix)
431 { 431 {
432 return SVGTransformTearOff::create(SVGTransform::create(matrix->value()), 0, PropertyIsNotAnimVal); 432 return SVGTransformTearOff::create(SVGTransform::create(matrix->value()), 0, PropertyIsNotAnimVal);
433 } 433 }
434 434
435 AffineTransform SVGSVGElement::localCoordinateSpaceTransform(SVGElement::CTMScop e mode) const 435 AffineTransform SVGSVGElement::localCoordinateSpaceTransform(SVGElement::CTMScop e mode) const
436 { 436 {
437 AffineTransform viewBoxTransform; 437 AffineTransform viewBoxTransform;
(...skipping 298 matching lines...) Expand 10 before | Expand all | Expand 10 after
736 visitor->trace(m_width); 736 visitor->trace(m_width);
737 visitor->trace(m_height); 737 visitor->trace(m_height);
738 visitor->trace(m_translation); 738 visitor->trace(m_translation);
739 visitor->trace(m_timeContainer); 739 visitor->trace(m_timeContainer);
740 visitor->trace(m_viewSpec); 740 visitor->trace(m_viewSpec);
741 SVGGraphicsElement::trace(visitor); 741 SVGGraphicsElement::trace(visitor);
742 SVGFitToViewBox::trace(visitor); 742 SVGFitToViewBox::trace(visitor);
743 } 743 }
744 744
745 } // namespace blink 745 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698