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

Unified Diff: ios/web/net/crw_request_tracker_delegate.h

Issue 2643763005: Remove obsolete methods from CRWRequestTrackerDelegate protocol. (Closed)
Patch Set: Created 3 years, 11 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 | « no previous file | ios/web/net/request_tracker_impl.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ios/web/net/crw_request_tracker_delegate.h
diff --git a/ios/web/net/crw_request_tracker_delegate.h b/ios/web/net/crw_request_tracker_delegate.h
index 2e8d8277647177db92107cecc38ab01b5eafc346..7ac472f0ba523a5c711023e90cc3efec4bdbc781 100644
--- a/ios/web/net/crw_request_tracker_delegate.h
+++ b/ios/web/net/crw_request_tracker_delegate.h
@@ -24,12 +24,6 @@ struct SSLStatus;
// All the methods in this protocol must be sent on the main thread.
@protocol CRWRequestTrackerDelegate
-// Returns |YES| of all the requests are static file requests and returns |NO|
-// if all the requests are network requests. Note it is not allowed for a
-// |CRWRequestTrackerDelegate| to send both static file requests and network
-// requests.
-- (BOOL)isForStaticFileRequests;
-
// The tracker calls this method every time there is a change in the SSL status
// of a page. The info is whatever object was passed to TrimToURL().
- (void)updatedSSLStatus:(const web::SSLStatus&)sslStatus
@@ -40,21 +34,6 @@ struct SSLStatus;
- (void)handleResponseHeaders:(net::HttpResponseHeaders*)headers
requestUrl:(const GURL&)requestUrl;
-// This method is called when a network request has an issue with the SSL
-// connection to present it to the user. The user will decide if the request
-// should continue or not and the callback should be invoked to let the backend
-// know.
-// If the callback is not called the request will be cancelled on the next call
-// to TrimToURL().
-// The callback is safe to call until the requestTracker it originated from
-// is deleted.
-typedef void (^SSLErrorCallback)(BOOL);
-- (void)presentSSLError:(const net::SSLInfo&)info
- forSSLStatus:(const web::SSLStatus&)status
- onUrl:(const GURL&)url
- recoverable:(BOOL)recoverable
- callback:(SSLErrorCallback)shouldContinue;
-
// Update the progress.
- (void)updatedProgress:(float)progress;
« no previous file with comments | « no previous file | ios/web/net/request_tracker_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698