| Index: net/base/network_delegate_impl.cc
|
| diff --git a/net/base/network_delegate_impl.cc b/net/base/network_delegate_impl.cc
|
| index 5e94543b3031436c2905b93f96e42aebfe4802ff..43f94af8f1645ce8168605957033893e6da0ef0a 100644
|
| --- a/net/base/network_delegate_impl.cc
|
| +++ b/net/base/network_delegate_impl.cc
|
| @@ -7,30 +7,20 @@
|
| #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) {
|
|
|