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

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

Issue 18548003: Rename ExceptionCode constants to use the names in the spec (2/3) (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 5 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.cpp ('k') | Source/core/svg/SVGMatrix.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 Nikolas Zimmermann <zimmermann@kde.org> 2 * Copyright (C) 2004, 2005 Nikolas Zimmermann <zimmermann@kde.org>
3 * Copyright (C) 2004, 2005, 2006 Rob Buis <buis@kde.org> 3 * Copyright (C) 2004, 2005, 2006 Rob Buis <buis@kde.org>
4 * Copyright (C) 2009 Google, Inc. All rights reserved. 4 * Copyright (C) 2009 Google, Inc. All rights reserved.
5 * Copyright (C) Research In Motion Limited 2010. All rights reserved. 5 * Copyright (C) Research In Motion Limited 2010. All rights reserved.
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 87 matching lines...) Expand 10 before | Expand all | Expand 10 after
98 return ctm; 98 return ctm;
99 } 99 }
100 100
101 AffineTransform SVGLocatable::getTransformToElement(SVGElement* target, Exceptio nCode& ec, StyleUpdateStrategy styleUpdateStrategy) 101 AffineTransform SVGLocatable::getTransformToElement(SVGElement* target, Exceptio nCode& ec, StyleUpdateStrategy styleUpdateStrategy)
102 { 102 {
103 AffineTransform ctm = getCTM(styleUpdateStrategy); 103 AffineTransform ctm = getCTM(styleUpdateStrategy);
104 104
105 if (target && target->isSVGGraphicsElement()) { 105 if (target && target->isSVGGraphicsElement()) {
106 AffineTransform targetCTM = toSVGGraphicsElement(target)->getCTM(styleUp dateStrategy); 106 AffineTransform targetCTM = toSVGGraphicsElement(target)->getCTM(styleUp dateStrategy);
107 if (!targetCTM.isInvertible()) { 107 if (!targetCTM.isInvertible()) {
108 ec = INVALID_STATE_ERR; 108 ec = InvalidStateError;
109 return ctm; 109 return ctm;
110 } 110 }
111 ctm = targetCTM.inverse() * ctm; 111 ctm = targetCTM.inverse() * ctm;
112 } 112 }
113 113
114 return ctm; 114 return ctm;
115 } 115 }
116 116
117 } 117 }
OLDNEW
« no previous file with comments | « Source/core/svg/SVGLength.cpp ('k') | Source/core/svg/SVGMatrix.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698