1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
|
// Copyright 2014 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "net/base/network_delegate_impl.h"
#include "net/base/net_errors.h"
namespace net {
int NetworkDelegateImpl::OnBeforeURLRequest(URLRequest* request,
const CompletionCallback& callback,
GURL* new_url) {
return OK;
}
void NetworkDelegateImpl::OnResolveProxy(const GURL& url,
int load_flags,
const ProxyService& proxy_service,
ProxyInfo* result) {
}
void NetworkDelegateImpl::OnProxyFallback(const ProxyServer& bad_proxy,
int net_error) {
}
int NetworkDelegateImpl::OnBeforeSendHeaders(URLRequest* request,
const CompletionCallback& callback,
HttpRequestHeaders* headers) {
return OK;
}
void NetworkDelegateImpl::OnBeforeSendProxyHeaders(
URLRequest* request,
const ProxyInfo& proxy_info,
HttpRequestHeaders* headers) {
}
void NetworkDelegateImpl::OnSendHeaders(URLRequest* request,
const HttpRequestHeaders& headers) {
}
int NetworkDelegateImpl::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 NetworkDelegateImpl::OnBeforeRedirect(URLRequest* request,
const GURL& new_location) {
}
void NetworkDelegateImpl::OnResponseStarted(URLRequest* request) {
}
void NetworkDelegateImpl::OnRawBytesRead(const URLRequest& request,
int bytes_read) {
}
void NetworkDelegateImpl::OnCompleted(URLRequest* request, bool started) {
}
void NetworkDelegateImpl::OnURLRequestDestroyed(URLRequest* request) {
}
void NetworkDelegateImpl::OnPACScriptError(int line_number,
const base::string16& error) {
}
NetworkDelegate::AuthRequiredResponse NetworkDelegateImpl::OnAuthRequired(
URLRequest* request,
const AuthChallengeInfo& auth_info,
const AuthCallback& callback,
AuthCredentials* credentials) {
return AUTH_REQUIRED_RESPONSE_NO_ACTION;
}
bool NetworkDelegateImpl::OnCanGetCookies(const URLRequest& request,
const CookieList& cookie_list) {
return true;
}
bool NetworkDelegateImpl::OnCanSetCookie(const URLRequest& request,
const std::string& cookie_line,
CookieOptions* options) {
return true;
}
bool NetworkDelegateImpl::OnCanAccessFile(const URLRequest& request,
const base::FilePath& path) const {
return false;
}
bool NetworkDelegateImpl::OnCanThrottleRequest(
const URLRequest& request) const {
return false;
}
bool NetworkDelegateImpl::OnCanEnablePrivacyMode(
const GURL& url,
const GURL& first_party_for_cookies) const {
return false;
}
bool NetworkDelegateImpl::OnFirstPartyOnlyCookieExperimentEnabled() const {
return false;
}
bool NetworkDelegateImpl::OnCancelURLRequestWithPolicyViolatingReferrerHeader(
const URLRequest& request,
const GURL& target_url,
const GURL& referrer_url) const {
return false;
}
} // namespace net
|