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

Unified Diff: Source/core/svg/SVGMarkerElement.h

Issue 72363002: Rename es => exceptionState in other than bindings/ (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Retry Created 7 years, 1 month 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/core/svg/SVGLengthList.cpp ('k') | Source/core/svg/SVGMatrix.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/svg/SVGMarkerElement.h
diff --git a/Source/core/svg/SVGMarkerElement.h b/Source/core/svg/SVGMarkerElement.h
index 7a26fe17191b3614fe9bf40ce56bb3e37845d8d1..6b7e4853905b73f0ffd8568186b9c61040962117 100644
--- a/Source/core/svg/SVGMarkerElement.h
+++ b/Source/core/svg/SVGMarkerElement.h
@@ -86,9 +86,9 @@ struct SVGPropertyTraits<SVGMarkerOrientType> {
if (value == "auto")
return SVGMarkerOrientAuto;
- TrackExceptionState es;
- angle.setValueAsString(value, es);
- if (!es.hadException())
+ TrackExceptionState exceptionState;
+ angle.setValueAsString(value, exceptionState);
+ if (!exceptionState.hadException())
return SVGMarkerOrientAngle;
return SVGMarkerOrientUnknown;
}
« no previous file with comments | « Source/core/svg/SVGLengthList.cpp ('k') | Source/core/svg/SVGMatrix.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698