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

Unified Diff: public/testing/WebFrameTestProxy.h

Issue 22159002: Add 'didDispatchPingLoader' callback to FrameLoaderClient. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 4 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 | « Source/web/FrameLoaderClientImpl.cpp ('k') | public/testing/WebTestProxy.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: public/testing/WebFrameTestProxy.h
diff --git a/public/testing/WebFrameTestProxy.h b/public/testing/WebFrameTestProxy.h
index 78eda03cd8ef5f2b2d451e376e08a5e34faa6d6e..666842d84ed285a9221b962bdb304e3e1b5d2556 100644
--- a/public/testing/WebFrameTestProxy.h
+++ b/public/testing/WebFrameTestProxy.h
@@ -120,6 +120,13 @@ public:
m_baseProxy->didDetectXSS(frame, insecureURL, didBlockEntirePage);
Base::didDetectXSS(frame, insecureURL, didBlockEntirePage);
}
+ virtual void didDispatchPingLoader(WebKit::WebFrame* frame, const WebKit::WebURL& url)
+ {
+ // This is not implemented in RenderFrameImpl, so need to explicitly call
+ // into the base proxy.
+ m_baseProxy->didDispatchPingLoader(frame, url);
+ Base::didDispatchPingLoader(frame, url);
+ }
virtual void willRequestResource(WebKit::WebFrame* frame, const WebKit::WebCachedURLRequest& request)
{
// This is not implemented in RenderFrameImpl, so need to explicitly call
« no previous file with comments | « Source/web/FrameLoaderClientImpl.cpp ('k') | public/testing/WebTestProxy.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698