Index: chrome/browser/profiles/profile_impl.cc |
diff --git a/chrome/browser/profiles/profile_impl.cc b/chrome/browser/profiles/profile_impl.cc |
index cef0f5cab4fc8ce7c1d68977e61274f7a07629e2..7e4e85467c790a9df50c99d445e883c9b53e5838 100644 |
--- a/chrome/browser/profiles/profile_impl.cc |
+++ b/chrome/browser/profiles/profile_impl.cc |
@@ -922,10 +922,10 @@ PrefService* ProfileImpl::GetOffTheRecordPrefs() { |
net::URLRequestContextGetter* ProfileImpl::CreateRequestContext( |
content::ProtocolHandlerMap* protocol_handlers, |
- content::ProtocolHandlerScopedVector protocol_interceptors) { |
+ content::URLRequestInterceptorScopedVector request_interceptors) { |
return io_data_.CreateMainRequestContextGetter( |
protocol_handlers, |
- protocol_interceptors.Pass(), |
+ request_interceptors.Pass(), |
g_browser_process->local_state(), |
g_browser_process->io_thread()).get(); |
} |
@@ -1039,12 +1039,12 @@ ProfileImpl::CreateRequestContextForStoragePartition( |
const base::FilePath& partition_path, |
bool in_memory, |
content::ProtocolHandlerMap* protocol_handlers, |
- content::ProtocolHandlerScopedVector protocol_interceptors) { |
+ content::URLRequestInterceptorScopedVector request_interceptors) { |
return io_data_.CreateIsolatedAppRequestContextGetter( |
partition_path, |
in_memory, |
protocol_handlers, |
- protocol_interceptors.Pass()).get(); |
+ request_interceptors.Pass()).get(); |
} |
net::SSLConfigService* ProfileImpl::GetSSLConfigService() { |