Index: content/shell/renderer/test_runner/web_frame_test_proxy.h |
diff --git a/content/shell/renderer/test_runner/web_frame_test_proxy.h b/content/shell/renderer/test_runner/web_frame_test_proxy.h |
index ef016ef51fe3760ebc8841582a15d6da01e7e81d..6defc8d438b6a9c3598dfd968ed2d529777f9612 100644 |
--- a/content/shell/renderer/test_runner/web_frame_test_proxy.h |
+++ b/content/shell/renderer/test_runner/web_frame_test_proxy.h |
@@ -179,6 +179,11 @@ class WebFrameTestProxy : public Base { |
Base::didDetectXSS(frame, insecureURL, didBlockEntirePage); |
} |
+ virtual void frameDetached(blink::WebFrame* frame) { |
+ base_proxy_->FrameDetached(frame); |
+ Base::frameDetached(frame); |
+ } |
+ |
virtual void didDispatchPingLoader(blink::WebLocalFrame* frame, |
const blink::WebURL& url) { |
// This is not implemented in RenderFrameImpl, so need to explicitly call |