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

Unified Diff: third_party/WebKit/Source/core/loader/PingLoader.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/loader/PingLoader.cpp
diff --git a/third_party/WebKit/Source/core/loader/PingLoader.cpp b/third_party/WebKit/Source/core/loader/PingLoader.cpp
index 72ac462af218636439d7cd36cb1412e6902162a7..6ecfdf66f5e4684f30a39bca7edbf71143ebc5f0 100644
--- a/third_party/WebKit/Source/core/loader/PingLoader.cpp
+++ b/third_party/WebKit/Source/core/loader/PingLoader.cpp
@@ -346,8 +346,8 @@ void PingLoaderImpl::didReceiveResponse(const WebURLResponse& response) {
"devtools.timeline", "ResourceFinish", "data",
InspectorResourceFinishEvent::data(m_identifier, 0, true, 0, 0));
const ResourceResponse& resourceResponse = response.toResourceResponse();
- InspectorInstrumentation::didReceiveResourceResponse(
- frame(), m_identifier, 0, resourceResponse, 0);
+ probe::didReceiveResourceResponse(frame(), m_identifier, 0,
+ resourceResponse, 0);
didFailLoading(frame());
}
dispose();
@@ -398,8 +398,8 @@ void PingLoaderImpl::timeout(TimerBase*) {
}
void PingLoaderImpl::didFailLoading(LocalFrame* frame) {
- InspectorInstrumentation::didFailLoading(
- frame, m_identifier, ResourceError::cancelledError(m_url));
+ probe::didFailLoading(frame, m_identifier,
+ ResourceError::cancelledError(m_url));
frame->console().didFailLoading(m_identifier,
ResourceError::cancelledError(m_url));
}

Powered by Google App Engine
This is Rietveld 408576698