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

Unified Diff: Source/WebKit/chromium/public/WebFrameClient.h

Issue 14264012: Create errors (especially cancellation errors) internally to WebCore, rather (Closed) Base URL: svn://svn.chromium.org/blink/trunk/
Patch Set: Created 7 years, 8 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
Index: Source/WebKit/chromium/public/WebFrameClient.h
===================================================================
--- Source/WebKit/chromium/public/WebFrameClient.h (revision 148844)
+++ Source/WebKit/chromium/public/WebFrameClient.h (working copy)
@@ -140,23 +140,6 @@
WebFrame*, const WebURLRequest&, WebNavigationType,
WebNavigationPolicy defaultPolicy, bool isRedirect) { return defaultPolicy; }
- // Query if the specified request can be handled.
- virtual bool canHandleRequest(
- WebFrame*, const WebURLRequest& request) { return true; }
-
- // Returns an error corresponding to canHandledRequest() returning false.
- virtual WebURLError cannotHandleRequestError(
- WebFrame*, const WebURLRequest& request) { return WebURLError(); }
-
- // Returns an error corresponding to a user cancellation event.
- virtual WebURLError cancelledError(
- WebFrame*, const WebURLRequest& request) { return WebURLError(); }
-
- // Notify that a URL cannot be handled.
- virtual void unableToImplementPolicyWithError(
- WebFrame*, const WebURLError&) { }
-
-
// Navigational notifications ------------------------------------------
// A form submission has been requested, but the page's submit event handler

Powered by Google App Engine
This is Rietveld 408576698