summaryrefslogtreecommitdiffstats
path: root/content/shell
diff options
context:
space:
mode:
authoravi@chromium.org <avi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-04-12 05:27:36 +0000
committeravi@chromium.org <avi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-04-12 05:27:36 +0000
commita9f6bc64bd2593c39d07596b9755771920671c91 (patch)
tree7b39eddf1c5fe6959a52ade0e0a04dd4c1c95d47 /content/shell
parent6925afc6fc5a728382d8ca1f15f2eb5a2ec000ba (diff)
downloadchromium_src-a9f6bc64bd2593c39d07596b9755771920671c91.zip
chromium_src-a9f6bc64bd2593c39d07596b9755771920671c91.tar.gz
chromium_src-a9f6bc64bd2593c39d07596b9755771920671c91.tar.bz2
RenderViewImpl shouldn't be a WebFrameClient.
BUG=361761 TEST=no change Review URL: https://codereview.chromium.org/235873002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@263486 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/shell')
-rw-r--r--content/shell/renderer/test_runner/WebTestProxy.h30
1 files changed, 0 insertions, 30 deletions
diff --git a/content/shell/renderer/test_runner/WebTestProxy.h b/content/shell/renderer/test_runner/WebTestProxy.h
index ff59506..69228b9 100644
--- a/content/shell/renderer/test_runner/WebTestProxy.h
+++ b/content/shell/renderer/test_runner/WebTestProxy.h
@@ -363,11 +363,6 @@ public:
WebTestProxyBase::didStartProvisionalLoad(frame);
Base::didStartProvisionalLoad(frame);
}
- virtual void didReceiveServerRedirectForProvisionalLoad(blink::WebLocalFrame* frame)
- {
- WebTestProxyBase::didReceiveServerRedirectForProvisionalLoad(frame);
- Base::didReceiveServerRedirectForProvisionalLoad(frame);
- }
virtual void didFailProvisionalLoad(blink::WebLocalFrame* frame, const blink::WebURLError& error)
{
// If the test finished, don't notify the embedder of the failed load,
@@ -406,31 +401,6 @@ public:
WebTestProxyBase::didFinishLoad(frame);
Base::didFinishLoad(frame);
}
- virtual void didDetectXSS(blink::WebLocalFrame* frame, const blink::WebURL& insecureURL, bool didBlockEntirePage)
- {
- WebTestProxyBase::didDetectXSS(frame, insecureURL, didBlockEntirePage);
- Base::didDetectXSS(frame, insecureURL, didBlockEntirePage);
- }
- virtual void willRequestResource(blink::WebLocalFrame* frame, const blink::WebCachedURLRequest& request)
- {
- WebTestProxyBase::willRequestResource(frame, request);
- Base::willRequestResource(frame, request);
- }
- virtual void willSendRequest(blink::WebLocalFrame* frame, unsigned identifier, blink::WebURLRequest& request, const blink::WebURLResponse& redirectResponse)
- {
- WebTestProxyBase::willSendRequest(frame, identifier, request, redirectResponse);
- Base::willSendRequest(frame, identifier, request, redirectResponse);
- }
- virtual void didReceiveResponse(blink::WebLocalFrame* frame, unsigned identifier, const blink::WebURLResponse& response)
- {
- WebTestProxyBase::didReceiveResponse(frame, identifier, response);
- Base::didReceiveResponse(frame, identifier, response);
- }
- virtual void didChangeResourcePriority(blink::WebLocalFrame* frame, unsigned identifier, const blink::WebURLRequest::Priority& priority, int intra_priority_value)
- {
- WebTestProxyBase::didChangeResourcePriority(frame, identifier, priority, intra_priority_value);
- Base::didChangeResourcePriority(frame, identifier, priority, intra_priority_value);
- }
virtual void didFinishResourceLoad(blink::WebLocalFrame* frame, unsigned identifier)
{
WebTestProxyBase::didFinishResourceLoad(frame, identifier);