diff options
Diffstat (limited to 'chrome/browser/extensions/api/downloads/downloads_api.cc')
-rw-r--r-- | chrome/browser/extensions/api/downloads/downloads_api.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/browser/extensions/api/downloads/downloads_api.cc b/chrome/browser/extensions/api/downloads/downloads_api.cc index ddb8303..d3775df 100644 --- a/chrome/browser/extensions/api/downloads/downloads_api.cc +++ b/chrome/browser/extensions/api/downloads/downloads_api.cc @@ -1073,7 +1073,7 @@ void DownloadsAcceptDangerFunction::DangerPromptCallback( DownloadItem* download_item = GetDownloadIfInProgress( profile(), include_incognito(), download_id); if (download_item) - download_item->DangerousDownloadValidated(); + download_item->ValidateDangerousDownload(); } SendResponse(error_.empty()); } |