diff options
Diffstat (limited to 'content/shell/shell_download_manager_delegate.cc')
-rw-r--r-- | content/shell/shell_download_manager_delegate.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/content/shell/shell_download_manager_delegate.cc b/content/shell/shell_download_manager_delegate.cc index 1d6ec99..0118914 100644 --- a/content/shell/shell_download_manager_delegate.cc +++ b/content/shell/shell_download_manager_delegate.cc @@ -152,11 +152,11 @@ bool ShellDownloadManagerDelegate::ShouldOpenFileBasedOnExtension( return false; } -bool ShellDownloadManagerDelegate::ShouldOpenDownload(DownloadItem* item) { +bool ShellDownloadManagerDelegate::ShouldCompleteDownload(DownloadItem* item) { return true; } -bool ShellDownloadManagerDelegate::ShouldCompleteDownload(DownloadItem* item) { +bool ShellDownloadManagerDelegate::ShouldOpenDownload(DownloadItem* item) { return true; } |