| 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)
|
|
|