Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(78)

Unified Diff: content/browser/download/download_manager_impl.cc

Issue 2384713004: [downloads] Correctly plumb client ID for download file scanning. (Closed)
Patch Set: . Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « content/browser/download/download_manager_impl.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/download/download_manager_impl.cc
diff --git a/content/browser/download/download_manager_impl.cc b/content/browser/download/download_manager_impl.cc
index ec6eabc73ea89d88bc9d8efacc12a172847ccd88..92f81fe7f92050c3d737da978394ff140131f5a6 100644
--- a/content/browser/download/download_manager_impl.cc
+++ b/content/browser/download/download_manager_impl.cc
@@ -415,6 +415,12 @@ void DownloadManagerImpl::OnFileExistenceChecked(uint32_t download_id,
}
}
+std::string DownloadManagerImpl::GetApplicationClientIdForFileScanning() const {
+ if (delegate_)
+ return delegate_->ApplicationClientIdForFileScanning();
+ return std::string();
+}
+
BrowserContext* DownloadManagerImpl::GetBrowserContext() const {
return browser_context_;
}
« no previous file with comments | « content/browser/download/download_manager_impl.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698