Fix network_delegate.cc

This commit is contained in:
Cheng Zhao 2015-03-08 19:47:12 -07:00
parent 95f0f25dc4
commit 2837b730f2
2 changed files with 67 additions and 35 deletions

View file

@ -21,6 +21,15 @@ int NetworkDelegate::OnBeforeURLRequest(
return net::OK;
}
void NetworkDelegate::OnResolveProxy(const GURL& url,
int load_flags,
const net::ProxyService& proxy_service,
net::ProxyInfo* result) {
}
void NetworkDelegate::OnProxyFallback(const net::ProxyServer& bad_proxy, int net_error) {
}
int NetworkDelegate::OnBeforeSendHeaders(
net::URLRequest* request,
const net::CompletionCallback& callback,
@ -28,6 +37,11 @@ int NetworkDelegate::OnBeforeSendHeaders(
return net::OK;
}
void NetworkDelegate::OnBeforeSendProxyHeaders(net::URLRequest* request,
const net::ProxyInfo& proxy_info,
net::HttpRequestHeaders* headers) {
}
void NetworkDelegate::OnSendHeaders(
net::URLRequest* request,
const net::HttpRequestHeaders& headers) {
@ -92,10 +106,17 @@ bool NetworkDelegate::OnCanThrottleRequest(
return false;
}
int NetworkDelegate::OnBeforeSocketStreamConnect(
net::SocketStream* socket,
const net::CompletionCallback& callback) {
return net::OK;
bool NetworkDelegate::OnCanEnablePrivacyMode(
const GURL& url,
const GURL& first_party_for_cookies) const {
return false;
}
bool NetworkDelegate::OnCancelURLRequestWithPolicyViolatingReferrerHeader(
const net::URLRequest& request,
const GURL& target_url,
const GURL& referrer_url) const {
return false;
}
} // namespace brightray