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

Unified Diff: third_party/WebKit/Source/web/WebSharedWorkerImpl.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
« no previous file with comments | « third_party/WebKit/Source/modules/websockets/DocumentWebSocketChannel.cpp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/web/WebSharedWorkerImpl.cpp
diff --git a/third_party/WebKit/Source/web/WebSharedWorkerImpl.cpp b/third_party/WebKit/Source/web/WebSharedWorkerImpl.cpp
index bc785668e0b09a950d708a742953f06d566a1e98..1ffd05db72fc99a89274c835b1bf4eadf2fe8cf8 100644
--- a/third_party/WebKit/Source/web/WebSharedWorkerImpl.cpp
+++ b/third_party/WebKit/Source/web/WebSharedWorkerImpl.cpp
@@ -322,8 +322,8 @@ void WebSharedWorkerImpl::startWorkerContext(
void WebSharedWorkerImpl::didReceiveScriptLoaderResponse() {
DCHECK(isMainThread());
- InspectorInstrumentation::didReceiveScriptResponse(
- m_loadingDocument, m_mainScriptLoader->identifier());
+ probe::didReceiveScriptResponse(m_loadingDocument,
+ m_mainScriptLoader->identifier());
m_client->selectAppCacheID(m_mainScriptLoader->appCacheID());
}
@@ -388,9 +388,8 @@ void WebSharedWorkerImpl::onScriptLoaderFinished() {
this, m_parentFrameTaskRunners.get());
m_workerThread =
SharedWorkerThread::create(m_name, m_loaderProxy, *m_reportingProxy);
- InspectorInstrumentation::scriptImported(m_loadingDocument,
- m_mainScriptLoader->identifier(),
- m_mainScriptLoader->script());
+ probe::scriptImported(m_loadingDocument, m_mainScriptLoader->identifier(),
+ m_mainScriptLoader->script());
m_mainScriptLoader.clear();
workerThread()->start(std::move(startupData), m_parentFrameTaskRunners.get());
« no previous file with comments | « third_party/WebKit/Source/modules/websockets/DocumentWebSocketChannel.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698