| Index: chrome/browser/profiles/profile_impl.cc
|
| diff --git a/chrome/browser/profiles/profile_impl.cc b/chrome/browser/profiles/profile_impl.cc
|
| index e0fa78547c8fb2b51de232727117182ce5c8742e..e5252977835868482b3cdf10dd93a656d8ed2ac3 100644
|
| --- a/chrome/browser/profiles/profile_impl.cc
|
| +++ b/chrome/browser/profiles/profile_impl.cc
|
| @@ -915,10 +915,6 @@ PrefService* ProfileImpl::GetOffTheRecordPrefs() {
|
| return otr_prefs_.get();
|
| }
|
|
|
| -net::URLRequestContextGetter* ProfileImpl::GetRequestContext() {
|
| - return GetDefaultStoragePartition(this)->GetURLRequestContext();
|
| -}
|
| -
|
| net::URLRequestContextGetter* ProfileImpl::GetMediaRequestContext() {
|
| // Return the default media context.
|
| return io_data_.GetMediaRequestContextGetter().get();
|
| @@ -946,6 +942,10 @@ content::ResourceContext* ProfileImpl::GetResourceContext() {
|
| return io_data_.GetResourceContext();
|
| }
|
|
|
| +net::URLRequestContextGetter* ProfileImpl::GetRequestContext() {
|
| + return GetDefaultStoragePartition(this)->GetURLRequestContext();
|
| +}
|
| +
|
| net::URLRequestContextGetter* ProfileImpl::GetRequestContextForExtensions() {
|
| return io_data_.GetExtensionsRequestContextGetter().get();
|
| }
|
|
|