| Index: chrome/browser/profiles/profile.cc
|
| diff --git a/chrome/browser/profiles/profile.cc b/chrome/browser/profiles/profile.cc
|
| index 1bd2bd9031523218c0a557dcbd49ce6ee8910861..3eb20c3f4256ae17a1e7264ea41de2d3b616466d 100644
|
| --- a/chrome/browser/profiles/profile.cc
|
| +++ b/chrome/browser/profiles/profile.cc
|
| @@ -428,15 +428,19 @@ class OffTheRecordProfileImpl : public Profile,
|
| return io_data_.GetMainRequestContextGetter();
|
| }
|
|
|
| - net::URLRequestContextGetter* GetRequestContextForExtensions() {
|
| + virtual net::URLRequestContextGetter* GetRequestContextForExtensions() {
|
| return io_data_.GetExtensionsRequestContextGetter();
|
| }
|
|
|
| - net::URLRequestContextGetter* GetRequestContextForIsolatedApp(
|
| + virtual net::URLRequestContextGetter* GetRequestContextForIsolatedApp(
|
| const std::string& app_id) {
|
| return io_data_.GetIsolatedAppRequestContextGetter(app_id);
|
| }
|
|
|
| + virtual const content::ResourceContext& GetResourceContext() {
|
| + return io_data_.GetResourceContext();
|
| + }
|
| +
|
| virtual net::SSLConfigService* GetSSLConfigService() {
|
| return profile_->GetSSLConfigService();
|
| }
|
|
|