| Index: net/base/network_delegate.cc
|
| diff --git a/net/base/network_delegate.cc b/net/base/network_delegate.cc
|
| index d4aa19e2cc3593444db0b9d86c5e0f127fc96445..b6858da65bdccb89fdee94907b5861bfada2e33b 100644
|
| --- a/net/base/network_delegate.cc
|
| +++ b/net/base/network_delegate.cc
|
| @@ -242,108 +242,4 @@ bool NetworkDelegate::CancelURLRequestWithPolicyViolatingReferrerHeader(
|
| request, target_url, referrer_url);
|
| }
|
|
|
| -int NetworkDelegate::OnBeforeURLRequest(URLRequest* request,
|
| - const CompletionCallback& callback,
|
| - GURL* new_url) {
|
| - return OK;
|
| -}
|
| -
|
| -void NetworkDelegate::OnResolveProxy(
|
| - const GURL& url,
|
| - int load_flags,
|
| - const ProxyService& proxy_service,
|
| - ProxyInfo* result) {
|
| -}
|
| -
|
| -void NetworkDelegate::OnProxyFallback(const ProxyServer& bad_proxy,
|
| - int net_error) {
|
| -}
|
| -
|
| -int NetworkDelegate::OnBeforeSendHeaders(URLRequest* request,
|
| - const CompletionCallback& callback,
|
| - HttpRequestHeaders* headers) {
|
| - return OK;
|
| -}
|
| -
|
| -void NetworkDelegate::OnBeforeSendProxyHeaders(
|
| - URLRequest* request,
|
| - const ProxyInfo& proxy_info,
|
| - HttpRequestHeaders* headers) {
|
| -}
|
| -
|
| -void NetworkDelegate::OnSendHeaders(URLRequest* request,
|
| - const HttpRequestHeaders& headers) {
|
| -}
|
| -
|
| -int NetworkDelegate::OnHeadersReceived(
|
| - URLRequest* request,
|
| - const CompletionCallback& callback,
|
| - const HttpResponseHeaders* original_response_headers,
|
| - scoped_refptr<HttpResponseHeaders>* override_response_headers,
|
| - GURL* allowed_unsafe_redirect_url) {
|
| - return OK;
|
| -}
|
| -
|
| -void NetworkDelegate::OnBeforeRedirect(URLRequest* request,
|
| - const GURL& new_location) {
|
| -}
|
| -
|
| -void NetworkDelegate::OnResponseStarted(URLRequest* request) {
|
| -}
|
| -
|
| -void NetworkDelegate::OnRawBytesRead(const URLRequest& request,
|
| - int bytes_read) {
|
| -}
|
| -
|
| -void NetworkDelegate::OnCompleted(URLRequest* request, bool started) {
|
| -}
|
| -
|
| -void NetworkDelegate::OnURLRequestDestroyed(URLRequest* request) {
|
| -}
|
| -
|
| -void NetworkDelegate::OnPACScriptError(int line_number,
|
| - const base::string16& error) {
|
| -}
|
| -
|
| -NetworkDelegate::AuthRequiredResponse NetworkDelegate::OnAuthRequired(
|
| - URLRequest* request,
|
| - const AuthChallengeInfo& auth_info,
|
| - const AuthCallback& callback,
|
| - AuthCredentials* credentials) {
|
| - return AUTH_REQUIRED_RESPONSE_NO_ACTION;
|
| -}
|
| -
|
| -bool NetworkDelegate::OnCanGetCookies(const URLRequest& request,
|
| - const CookieList& cookie_list) {
|
| - return true;
|
| -}
|
| -
|
| -bool NetworkDelegate::OnCanSetCookie(const URLRequest& request,
|
| - const std::string& cookie_line,
|
| - CookieOptions* options) {
|
| - return true;
|
| -}
|
| -
|
| -bool NetworkDelegate::OnCanAccessFile(const URLRequest& request,
|
| - const base::FilePath& path) const {
|
| - return false;
|
| -}
|
| -
|
| -bool NetworkDelegate::OnCanThrottleRequest(const URLRequest& request) const {
|
| - return false;
|
| -}
|
| -
|
| -bool NetworkDelegate::OnCanEnablePrivacyMode(
|
| - const GURL& url,
|
| - const GURL& first_party_for_cookies) const {
|
| - return false;
|
| -}
|
| -
|
| -bool NetworkDelegate::OnCancelURLRequestWithPolicyViolatingReferrerHeader(
|
| - const URLRequest& request,
|
| - const GURL& target_url,
|
| - const GURL& referrer_url) const {
|
| - return false;
|
| -}
|
| -
|
| } // namespace net
|
|
|