| 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 471bac33c589762f02ef08c35923556d993717b7..01fc4327896eabf4b719530c3cf8964bb3c3a0d5 100644
|
| --- a/chrome/browser/profiles/off_the_record_profile_io_data.cc
|
| +++ b/chrome/browser/profiles/off_the_record_profile_io_data.cc
|
| @@ -295,6 +295,14 @@ OffTheRecordProfileIOData::InitializeAppRequestContext(
|
| }
|
|
|
| ChromeURLRequestContext*
|
| +OffTheRecordProfileIOData::InitializeMediaRequestContext(
|
| + ChromeURLRequestContext* original_context,
|
| + const std::string& app_id) const {
|
| + NOTREACHED();
|
| + return NULL;
|
| +}
|
| +
|
| +ChromeURLRequestContext*
|
| OffTheRecordProfileIOData::AcquireMediaRequestContext() const {
|
| NOTREACHED();
|
| return NULL;
|
| @@ -311,6 +319,14 @@ OffTheRecordProfileIOData::AcquireIsolatedAppRequestContext(
|
| return app_request_context;
|
| }
|
|
|
| +ChromeURLRequestContext*
|
| +OffTheRecordProfileIOData::AcquireIsolatedMediaRequestContext(
|
| + ChromeURLRequestContext* app_context,
|
| + const std::string& app_id) const {
|
| + NOTREACHED();
|
| + return NULL;
|
| +}
|
| +
|
| void OffTheRecordProfileIOData::CreateFtpProtocolHandler(
|
| net::URLRequestJobFactory* job_factory,
|
| net::FtpAuthCache* ftp_auth_cache) const {
|
|
|