| Index: chrome/browser/profiles/profile_impl.cc
|
| diff --git a/chrome/browser/profiles/profile_impl.cc b/chrome/browser/profiles/profile_impl.cc
|
| index c6185fd4cc4c8325060e1214968bc685c973a0d1..fcace6ff03fd19c1445244890d58e36708496fe6 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();
|
| }
|
| @@ -1038,12 +1038,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() {
|
|
|