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