Index: third_party/WebKit/public/web/WebFrameClient.h |
diff --git a/third_party/WebKit/public/web/WebFrameClient.h b/third_party/WebKit/public/web/WebFrameClient.h |
index ebde5da8af21027974c7ee9c42cd823c54ae8549..bc6314859ce7219f13cd1f6e9371f2a55a510c40 100644 |
--- a/third_party/WebKit/public/web/WebFrameClient.h |
+++ b/third_party/WebKit/public/web/WebFrameClient.h |
@@ -458,22 +458,11 @@ public: |
// A request is about to be sent out, and the client may modify it. Request |
// is writable, and changes to the URL, for example, will change the request |
- // made. If this request is the result of a redirect, then redirectResponse |
- // will be non-null and contain the response that triggered the redirect. |
- virtual void willSendRequest( |
- WebLocalFrame*, unsigned identifier, WebURLRequest&, |
- const WebURLResponse& redirectResponse) { } |
- |
- // Response headers have been received for the resource request given |
- // by identifier. |
- virtual void didReceiveResponse(unsigned identifier, const WebURLResponse&) { } |
- |
- virtual void didChangeResourcePriority( |
- unsigned identifier, const WebURLRequest::Priority& priority, int) { } |
- |
- // The resource request given by identifier succeeded. |
- virtual void didFinishResourceLoad( |
- WebLocalFrame*, unsigned identifier) { } |
+ // made. |
+ virtual void willSendRequest(WebLocalFrame*, WebURLRequest&) {} |
+ |
+ // Response headers have been received. |
+ virtual void didReceiveResponse(const WebURLResponse&) {} |
// The specified request was satified from WebCore's memory cache. |
virtual void didLoadResourceFromMemoryCache( |