| Index: content/browser/loader/resource_loader.cc
|
| diff --git a/content/browser/loader/resource_loader.cc b/content/browser/loader/resource_loader.cc
|
| index aae735c306fcb1c899310a1cb2921b9213aedc5e..91e07a5d2735e89541565ad8a54f36cd755d6bab 100644
|
| --- a/content/browser/loader/resource_loader.cc
|
| +++ b/content/browser/loader/resource_loader.cc
|
| @@ -470,7 +470,7 @@ void ResourceLoader::CancelRequestInternal(int error, bool from_renderer) {
|
| // WebKit will send us a cancel for downloads since it no longer handles
|
| // them. In this case, ignore the cancel since we handle downloads in the
|
| // browser.
|
| - if (from_renderer && info->is_download())
|
| + if (from_renderer && (info->is_download() || info->is_stream()))
|
| return;
|
|
|
| // TODO(darin): Perhaps we should really be looking to see if the status is
|
|
|