Index: chrome/test/base/testing_profile.cc |
diff --git a/chrome/test/base/testing_profile.cc b/chrome/test/base/testing_profile.cc |
index d40d38394eb1e75a7079e74b0579c56b530166ff..39809c45b568ba0bdd98df09e8fc0f4039926823 100644 |
--- a/chrome/test/base/testing_profile.cc |
+++ b/chrome/test/base/testing_profile.cc |
@@ -695,7 +695,8 @@ net::URLRequestContextGetter* TestingProfile::GetRequestContext() { |
} |
net::URLRequestContextGetter* TestingProfile::CreateRequestContext( |
- content::ProtocolHandlerMap* protocol_handlers) { |
+ content::ProtocolHandlerMap* protocol_handlers, |
+ content::ProtocolHandlerScopedVector protocol_interceptors) { |
return new net::TestURLRequestContextGetter( |
BrowserThread::GetMessageLoopProxyForThread(BrowserThread::IO)); |
} |
@@ -772,7 +773,8 @@ net::URLRequestContextGetter* |
TestingProfile::CreateRequestContextForStoragePartition( |
const base::FilePath& partition_path, |
bool in_memory, |
- content::ProtocolHandlerMap* protocol_handlers) { |
+ content::ProtocolHandlerMap* protocol_handlers, |
+ content::ProtocolHandlerScopedVector protocol_interceptors) { |
// We don't test storage partitions here yet, so returning the same dummy |
// context is sufficient for now. |
return GetRequestContext(); |