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

Unified Diff: Source/web/WebRange.cpp

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/web/WebNode.cpp ('k') | Source/web/tests/LocaleWinTest.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/web/WebRange.cpp
diff --git a/Source/web/WebRange.cpp b/Source/web/WebRange.cpp
index cacc63a3545980a3f08292aaa413d96eab0f3d6a..ea433bc83975a5ffdea3ba4b807f0a96d9ac17a3 100644
--- a/Source/web/WebRange.cpp
+++ b/Source/web/WebRange.cpp
@@ -81,18 +81,18 @@ int WebRange::endOffset() const
WebNode WebRange::startContainer(WebExceptionCode& exceptionCode) const
{
// FIXME: Create a wrapper class that just sets the internal int.
- TrackExceptionState es;
- RefPtr<Node> node(m_private->startContainer(es));
- exceptionCode = es.code();
+ TrackExceptionState exceptionState;
+ RefPtr<Node> node(m_private->startContainer(exceptionState));
+ exceptionCode = exceptionState.code();
return node.release();
}
WebNode WebRange::endContainer(WebExceptionCode& exceptionCode) const
{
// FIXME: Create a wrapper class that just sets the internal int.
- TrackExceptionState es;
- RefPtr<Node> node(m_private->endContainer(es));
- exceptionCode = es.code();
+ TrackExceptionState exceptionState;
+ RefPtr<Node> node(m_private->endContainer(exceptionState));
+ exceptionCode = exceptionState.code();
return node.release();
}
« no previous file with comments | « Source/web/WebNode.cpp ('k') | Source/web/tests/LocaleWinTest.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698