| Index: content/public/test/test_browser_context.cc
|
| diff --git a/content/public/test/test_browser_context.cc b/content/public/test/test_browser_context.cc
|
| index 40fc32ce96438345a7fbd12fd7107e92c41ec574..4e37e8bd9b0e800f43c7a54965a57e426eac8e06 100644
|
| --- a/content/public/test/test_browser_context.cc
|
| +++ b/content/public/test/test_browser_context.cc
|
| @@ -143,4 +143,19 @@ BackgroundSyncController* TestBrowserContext::GetBackgroundSyncController() {
|
| return background_sync_controller_.get();
|
| }
|
|
|
| +net::URLRequestContextGetter* TestBrowserContext::CreateRequestContext(
|
| + content::ProtocolHandlerMap* protocol_handlers,
|
| + content::URLRequestInterceptorScopedVector request_interceptors) {
|
| + return GetRequestContext();
|
| +}
|
| +
|
| +net::URLRequestContextGetter*
|
| +TestBrowserContext::CreateRequestContextForStoragePartition(
|
| + const base::FilePath& partition_path,
|
| + bool in_memory,
|
| + ProtocolHandlerMap* protocol_handlers,
|
| + URLRequestInterceptorScopedVector request_interceptors) {
|
| + return nullptr;
|
| +}
|
| +
|
| } // namespace content
|
|
|