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

Unified Diff: third_party/WebKit/public/web/WebFrameClient.h

Issue 2211283004: Drop test-only WebFrameClient params/functions (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 4 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 | « third_party/WebKit/Source/web/tests/data/script_priority.html ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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(
« no previous file with comments | « third_party/WebKit/Source/web/tests/data/script_priority.html ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698