| Index: chrome/browser/profiles/off_the_record_profile_io_data.cc
|
| diff --git a/chrome/browser/profiles/off_the_record_profile_io_data.cc b/chrome/browser/profiles/off_the_record_profile_io_data.cc
|
| index e90b5acfb89206ac366645b0d45267779a75ee44..c33f78c2c4b2fbdacaa4c59c3bbeffe6e40468c9 100644
|
| --- a/chrome/browser/profiles/off_the_record_profile_io_data.cc
|
| +++ b/chrome/browser/profiles/off_the_record_profile_io_data.cc
|
| @@ -250,9 +250,9 @@ void OffTheRecordProfileIOData::LazyInitializeInternal(
|
| extensions_context->set_job_factory(job_factory());
|
| }
|
|
|
| -scoped_refptr<ChromeURLRequestContext>
|
| +ChromeURLRequestContext*
|
| OffTheRecordProfileIOData::InitializeAppRequestContext(
|
| - scoped_refptr<ChromeURLRequestContext> main_context,
|
| + ChromeURLRequestContext* main_context,
|
| const std::string& app_id) const {
|
| AppRequestContext* context = new AppRequestContext;
|
|
|
| @@ -276,18 +276,18 @@ OffTheRecordProfileIOData::InitializeAppRequestContext(
|
| return context;
|
| }
|
|
|
| -scoped_refptr<ChromeURLRequestContext>
|
| +ChromeURLRequestContext*
|
| OffTheRecordProfileIOData::AcquireMediaRequestContext() const {
|
| NOTREACHED();
|
| return NULL;
|
| }
|
|
|
| -scoped_refptr<ChromeURLRequestContext>
|
| +ChromeURLRequestContext*
|
| OffTheRecordProfileIOData::AcquireIsolatedAppRequestContext(
|
| - scoped_refptr<ChromeURLRequestContext> main_context,
|
| + ChromeURLRequestContext* main_context,
|
| const std::string& app_id) const {
|
| // We create per-app contexts on demand, unlike the others above.
|
| - scoped_refptr<ChromeURLRequestContext> app_request_context =
|
| + ChromeURLRequestContext* app_request_context =
|
| InitializeAppRequestContext(main_context, app_id);
|
| DCHECK(app_request_context);
|
| return app_request_context;
|
|
|