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

Unified Diff: Source/core/timing/Performance.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/core/testing/Internals.cpp ('k') | Source/core/timing/PerformanceUserTiming.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/timing/Performance.cpp
diff --git a/Source/core/timing/Performance.cpp b/Source/core/timing/Performance.cpp
index a1e44a02cf2206f73962019b78c6f5c3efd02fca..048aec565bb5e03a90a3becf40c74658763c635f 100644
--- a/Source/core/timing/Performance.cpp
+++ b/Source/core/timing/Performance.cpp
@@ -248,11 +248,11 @@ bool Performance::isResourceTimingBufferFull()
return m_resourceTimingBuffer.size() >= m_resourceTimingBufferSize;
}
-void Performance::mark(const String& markName, ExceptionState& es)
+void Performance::mark(const String& markName, ExceptionState& exceptionState)
{
if (!m_userTiming)
m_userTiming = UserTiming::create(this);
- m_userTiming->mark(markName, es);
+ m_userTiming->mark(markName, exceptionState);
}
void Performance::clearMarks(const String& markName)
@@ -262,11 +262,11 @@ void Performance::clearMarks(const String& markName)
m_userTiming->clearMarks(markName);
}
-void Performance::measure(const String& measureName, const String& startMark, const String& endMark, ExceptionState& es)
+void Performance::measure(const String& measureName, const String& startMark, const String& endMark, ExceptionState& exceptionState)
{
if (!m_userTiming)
m_userTiming = UserTiming::create(this);
- m_userTiming->measure(measureName, startMark, endMark, es);
+ m_userTiming->measure(measureName, startMark, endMark, exceptionState);
}
void Performance::clearMeasures(const String& measureName)
« no previous file with comments | « Source/core/testing/Internals.cpp ('k') | Source/core/timing/PerformanceUserTiming.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698