| 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 28e0fa7e6c34d1b6c7fa4c33726ae05d3a28977b..17e09ef5c587a76bff83f1a7ab1b10cfb66fa77b 100644
|
| --- a/chrome/browser/profiles/off_the_record_profile_io_data.cc
|
| +++ b/chrome/browser/profiles/off_the_record_profile_io_data.cc
|
| @@ -182,10 +182,10 @@ OffTheRecordProfileIOData::Handle::GetAllContextGetters() {
|
| for (; iter != app_request_context_getter_map_.end(); ++iter)
|
| context_getters->push_back(iter->second);
|
|
|
| - if (extensions_request_context_getter_)
|
| + if (extensions_request_context_getter_.get())
|
| context_getters->push_back(extensions_request_context_getter_);
|
|
|
| - if (main_request_context_getter_)
|
| + if (main_request_context_getter_.get())
|
| context_getters->push_back(main_request_context_getter_);
|
|
|
| return context_getters.Pass();
|
|
|