Index: net/url_request/url_request.h |
diff --git a/net/url_request/url_request.h b/net/url_request/url_request.h |
index 2c54cbca5a5ba525c2e2245490d2c5e855af1708..3875efdab0c3c7031bd5dbbc5bbf07ed45323694 100644 |
--- a/net/url_request/url_request.h |
+++ b/net/url_request/url_request.h |
@@ -260,19 +260,6 @@ class NET_EXPORT URLRequest : NON_EXPORTED_BASE(public base::NonThreadSafe), |
const SSLInfo& ssl_info, |
bool fatal); |
- // Called when reading cookies to allow the delegate to block access to the |
- // cookie. This method will never be invoked when LOAD_DO_NOT_SEND_COOKIES |
- // is specified. |
- virtual bool CanGetCookies(const URLRequest* request, |
- const CookieList& cookie_list) const; |
- |
- // Called when a cookie is set to allow the delegate to block access to the |
- // cookie. This method will never be invoked when LOAD_DO_NOT_SAVE_COOKIES |
- // is specified. |
- virtual bool CanSetCookie(const URLRequest* request, |
- const std::string& cookie_line, |
- CookieOptions* options) const; |
- |
// After calling Start(), the delegate will receive an OnResponseStarted |
// callback when the request has completed. If an error occurred, the |
// request->status() will be set. On success, all redirects have been |