| Index: chrome/browser/profiles/profile_io_data.cc
|
| diff --git a/chrome/browser/profiles/profile_io_data.cc b/chrome/browser/profiles/profile_io_data.cc
|
| index 9553c850c9daa552126a2839d69339e36bd1ca93..6283bc97dd4e56e80ae698a9f3ee5fd06bffee91 100644
|
| --- a/chrome/browser/profiles/profile_io_data.cc
|
| +++ b/chrome/browser/profiles/profile_io_data.cc
|
| @@ -226,6 +226,15 @@ ProfileIOData::GetExtensionsRequestContext() const {
|
| return context;
|
| }
|
|
|
| +scoped_refptr<ChromeURLRequestContext>
|
| +ProfileIOData::GetIsolatedAppRequestContext(const Extension* app) const {
|
| + LazyInitialize();
|
| + scoped_refptr<ChromeURLRequestContext> context =
|
| + AcquireIsolatedAppRequestContext(app);
|
| + DCHECK(context);
|
| + return context;
|
| +}
|
| +
|
| void ProfileIOData::LazyInitialize() const {
|
| DCHECK(BrowserThread::CurrentlyOn(BrowserThread::IO));
|
| if (initialized_)
|
|
|