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 1250e986dc8849d17ecf139fe70391878c929348..f7b637a8133635c88ca5862e67a4735a977a1518 100644 |
--- a/third_party/WebKit/Source/core/loader/PingLoader.cpp |
+++ b/third_party/WebKit/Source/core/loader/PingLoader.cpp |
@@ -349,7 +349,7 @@ |
InspectorResourceFinishEvent::data(m_identifier, 0, true, 0)); |
const ResourceResponse& resourceResponse = response.toResourceResponse(); |
InspectorInstrumentation::didReceiveResourceResponse( |
- frame()->document(), m_identifier, 0, resourceResponse, 0); |
+ frame(), m_identifier, 0, resourceResponse, 0); |
didFailLoading(frame()); |
} |
dispose(); |
@@ -400,7 +400,7 @@ |
void PingLoaderImpl::didFailLoading(LocalFrame* frame) { |
InspectorInstrumentation::didFailLoading( |
- frame->document(), m_identifier, ResourceError::cancelledError(m_url)); |
+ frame, m_identifier, ResourceError::cancelledError(m_url)); |
frame->console().didFailLoading(m_identifier, |
ResourceError::cancelledError(m_url)); |
} |