Index: Source/testing/runner/WebTestProxy.cpp |
diff --git a/Source/testing/runner/WebTestProxy.cpp b/Source/testing/runner/WebTestProxy.cpp |
index 7e2dd3becda02953f3018bee6225ed2b7c7d1eb5..614149c879502ba2d30c11bc5221a23e6d0b0209 100644 |
--- a/Source/testing/runner/WebTestProxy.cpp |
+++ b/Source/testing/runner/WebTestProxy.cpp |
@@ -1272,6 +1272,12 @@ void WebTestProxyBase::didDetectXSS(WebFrame*, const WebURL&, bool) |
m_delegate->printMessage("didDetectXSS\n"); |
} |
+void WebTestProxyBase::didDispatchPingLoader(WebFrame*, const WebURL& url) |
+{ |
+ if (m_testInterfaces->testRunner()->shouldDumpPingLoaderCallbacks()) |
+ m_delegate->printMessage(string("PingLoader dispatched to '") + URLDescription(url).c_str() + "'.\n"); |
+} |
+ |
void WebTestProxyBase::willRequestResource(WebFrame* frame, const WebKit::WebCachedURLRequest& request) |
{ |
if (m_testInterfaces->testRunner()->shouldDumpResourceRequestCallbacks()) { |