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 d9fc22ee2916a1db59c39144919c442ed9361477..1a76934e9b2a5f511f334bd6632a41f4dc4bdf09 100644 |
--- a/chrome/browser/profiles/off_the_record_profile_io_data.cc |
+++ b/chrome/browser/profiles/off_the_record_profile_io_data.cc |
@@ -318,6 +318,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; |
@@ -334,6 +342,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 { |