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

Unified Diff: content/public/browser/download_manager.h

Issue 9589003: Replace void* with int32 for passing download_id to SelectFileDialog::Listener. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: fix browser/unit tests Created 8 years, 10 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
Index: content/public/browser/download_manager.h
===================================================================
--- content/public/browser/download_manager.h (revision 124549)
+++ content/public/browser/download_manager.h (working copy)
@@ -226,8 +226,8 @@
virtual void ClearLastDownloadPath() = 0;
// Called by the delegate after the save as dialog is closed.
- virtual void FileSelected(const FilePath& path, void* params) = 0;
- virtual void FileSelectionCanceled(void* params) = 0;
+ virtual void FileSelected(const FilePath& path, int32 download_id) = 0;
+ virtual void FileSelectionCanceled(int32 download_id) = 0;
// Called by the delegate if it delayed the download in
// DownloadManagerDelegate::ShouldStartDownload and now is ready.
« no previous file with comments | « content/browser/download/download_manager_impl_unittest.cc ('k') | content/public/browser/download_manager_delegate.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698