| Index: content/browser/resource_context_impl.cc
|
| diff --git a/content/browser/resource_context_impl.cc b/content/browser/resource_context_impl.cc
|
| index f0ebf0fffd61e1cc89e4048bc34873fd51b95dee..8281aea1dbfef7dca3cde1c9fcd623faeb0fd420 100644
|
| --- a/content/browser/resource_context_impl.cc
|
| +++ b/content/browser/resource_context_impl.cc
|
| @@ -277,6 +277,8 @@ void InitializeResourceContext(BrowserContext* browser_context) {
|
|
|
| // Add content's URLRequestContext's hooks.
|
| // Check first to avoid memory leak in unittests.
|
| + // TODO(creis): Do equivalent initializations for isolated app and isolated
|
| + // media request contexts.
|
| if (BrowserThread::IsMessageLoopValid(BrowserThread::IO)) {
|
| BrowserThread::PostTask(
|
| BrowserThread::IO, FROM_HERE,
|
| @@ -288,7 +290,7 @@ void InitializeResourceContext(BrowserContext* browser_context) {
|
| base::Bind(&InitializeRequestContext,
|
| resource_context,
|
| make_scoped_refptr(
|
| - browser_context->GetRequestContextForMedia())));
|
| + browser_context->GetMediaRequestContext())));
|
| }
|
| }
|
|
|
|
|