Index: content/public/browser/resource_dispatcher_host_delegate.cc |
diff --git a/content/public/browser/resource_dispatcher_host_delegate.cc b/content/public/browser/resource_dispatcher_host_delegate.cc |
index ccca655c9fba4aa98a3bd81fe51b1bcd4a1f405e..571023d015ded57af7c0f88106f16bb2c99ae550 100644 |
--- a/content/public/browser/resource_dispatcher_host_delegate.cc |
+++ b/content/public/browser/resource_dispatcher_host_delegate.cc |
@@ -70,6 +70,23 @@ bool ResourceDispatcherHostDelegate::ShouldForceDownloadResource( |
return false; |
} |
+bool ResourceDispatcherHostDelegate::ShouldCreateStream( |
+ content::ResourceContext* resource_context, |
+ const GURL& url, |
+ const std::string& mime_type, |
+ GURL* security_origin) { |
+ return false; |
+} |
+ |
+void ResourceDispatcherHostDelegate::OnStreamCreated( |
+ content::ResourceContext* resource_context, |
+ int render_process_id, |
+ int render_view_id, |
+ const GURL& stream_url, |
+ const std::string& mime_type, |
+ const GURL& original_url) { |
+} |
+ |
void ResourceDispatcherHostDelegate::OnResponseStarted( |
net::URLRequest* request, |
ResourceContext* resource_context, |