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

Unified Diff: third_party/WebKit/Source/core/workers/InProcessWorkerBase.cpp

Issue 2727633006: DevTools: Rename InspectorInstrumentation:: namespace into probe:: (Closed)
Patch Set: Created 3 years, 10 months 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
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;
}
« no previous file with comments | « third_party/WebKit/Source/core/paint/FramePainter.cpp ('k') | third_party/WebKit/Source/core/workers/WorkerEventQueue.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698