| Index: third_party/WebKit/Source/core/workers/InProcessWorkerBase.cpp
|
| diff --git a/third_party/WebKit/Source/core/workers/InProcessWorkerBase.cpp b/third_party/WebKit/Source/core/workers/InProcessWorkerBase.cpp
|
| index 44736ce20c0e2fbd4ccbff9dbb14dcb20f45325e..57f7e4825ee5415601efb35c57d43339361682f0 100644
|
| --- a/third_party/WebKit/Source/core/workers/InProcessWorkerBase.cpp
|
| +++ b/third_party/WebKit/Source/core/workers/InProcessWorkerBase.cpp
|
| @@ -87,8 +87,8 @@ bool InProcessWorkerBase::hasPendingActivity() const {
|
| }
|
|
|
| void InProcessWorkerBase::onResponse() {
|
| - InspectorInstrumentation::didReceiveScriptResponse(
|
| - getExecutionContext(), m_scriptLoader->identifier());
|
| + probe::didReceiveScriptResponse(getExecutionContext(),
|
| + m_scriptLoader->identifier());
|
| }
|
|
|
| void InProcessWorkerBase::onFinished() {
|
| @@ -102,9 +102,8 @@ void InProcessWorkerBase::onFinished() {
|
| m_scriptLoader->script(),
|
| m_scriptLoader->releaseContentSecurityPolicy(),
|
| m_scriptLoader->getReferrerPolicy());
|
| - InspectorInstrumentation::scriptImported(getExecutionContext(),
|
| - m_scriptLoader->identifier(),
|
| - m_scriptLoader->script());
|
| + probe::scriptImported(getExecutionContext(), m_scriptLoader->identifier(),
|
| + m_scriptLoader->script());
|
| }
|
| m_scriptLoader = nullptr;
|
| }
|
|
|