| Index: components/test_runner/web_frame_test_proxy.h
|
| diff --git a/components/test_runner/web_frame_test_proxy.h b/components/test_runner/web_frame_test_proxy.h
|
| index 82a193c97a89cba95723e096e3e5262afb4567da..e65a81a94674502b2ebb3150af9b6ab214663c4c 100644
|
| --- a/components/test_runner/web_frame_test_proxy.h
|
| +++ b/components/test_runner/web_frame_test_proxy.h
|
| @@ -221,36 +221,15 @@ class WebFrameTestProxy : public Base, public WebFrameTestProxyBase {
|
| Base::didDispatchPingLoader(url);
|
| }
|
|
|
| - void willSendRequest(
|
| - blink::WebLocalFrame* frame,
|
| - unsigned identifier,
|
| - blink::WebURLRequest& request,
|
| - const blink::WebURLResponse& redirect_response) override {
|
| - Base::willSendRequest(frame, identifier, request, redirect_response);
|
| - test_client()->willSendRequest(frame, identifier, request,
|
| - redirect_response);
|
| - }
|
| -
|
| - void didReceiveResponse(unsigned identifier,
|
| - const blink::WebURLResponse& response) override {
|
| - test_client()->didReceiveResponse(identifier, response);
|
| - Base::didReceiveResponse(identifier, response);
|
| - }
|
| -
|
| - void didChangeResourcePriority(unsigned identifier,
|
| - const blink::WebURLRequest::Priority& priority,
|
| - int intra_priority_value) override {
|
| - // This is not implemented in RenderFrameImpl, so need to explicitly call
|
| - // into the base proxy.
|
| - test_client()->didChangeResourcePriority(identifier, priority,
|
| - intra_priority_value);
|
| - Base::didChangeResourcePriority(
|
| - identifier, priority, intra_priority_value);
|
| + void willSendRequest(blink::WebLocalFrame* frame,
|
| + blink::WebURLRequest& request) override {
|
| + Base::willSendRequest(frame, request);
|
| + test_client()->willSendRequest(frame, request);
|
| }
|
|
|
| - void didFinishResourceLoad(blink::WebLocalFrame* frame,
|
| - unsigned identifier) override {
|
| - test_client()->didFinishResourceLoad(frame, identifier);
|
| + void didReceiveResponse(const blink::WebURLResponse& response) override {
|
| + test_client()->didReceiveResponse(response);
|
| + Base::didReceiveResponse(response);
|
| }
|
|
|
| blink::WebNavigationPolicy decidePolicyForNavigation(
|
|
|