Don't create empty url request job factory.

This commit is contained in:
Cheng Zhao 2014-08-31 19:57:15 +08:00
parent dca1c51b32
commit 6010539914
2 changed files with 0 additions and 9 deletions

View file

@ -118,12 +118,6 @@ net::NetworkDelegate* BrowserContext::CreateNetworkDelegate() {
return new NetworkDelegate;
}
net::URLRequestJobFactory* BrowserContext::CreateURLRequestJobFactory(
content::ProtocolHandlerMap* protocol_handlers,
content::URLRequestInterceptorScopedVector* protocol_interceptors) {
return NULL;
}
base::FilePath BrowserContext::GetPath() const {
return path_;
}

View file

@ -40,9 +40,6 @@ class BrowserContext : public content::BrowserContext,
// URLRequestContextGetter::Delegate:
virtual net::NetworkDelegate* CreateNetworkDelegate() OVERRIDE;
virtual net::URLRequestJobFactory* CreateURLRequestJobFactory(
content::ProtocolHandlerMap* protocol_handlers,
content::URLRequestInterceptorScopedVector* protocol_interceptors) OVERRIDE;
virtual base::FilePath GetPath() const OVERRIDE;