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

Unified Diff: content/test/mock_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
« no previous file with comments | « content/shell/shell_download_manager_delegate.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/test/mock_download_manager.h
===================================================================
--- content/test/mock_download_manager.h (revision 124549)
+++ content/test/mock_download_manager.h (working copy)
@@ -76,8 +76,8 @@
bool is_otr,
content::DownloadItem::Observer* observer));
MOCK_METHOD0(ClearLastDownloadPath, void());
- MOCK_METHOD2(FileSelected, void(const FilePath& path, void* params));
- MOCK_METHOD1(FileSelectionCanceled, void(void* params));
+ MOCK_METHOD2(FileSelected, void(const FilePath& path, int32 download_id));
+ MOCK_METHOD1(FileSelectionCanceled, void(int32 download_id));
MOCK_METHOD1(RestartDownload, void(int32 download_id));
MOCK_METHOD0(CheckForHistoryFilesRemoval, void());
MOCK_METHOD1(GetDownloadItem, content::DownloadItem*(int id));
« no previous file with comments | « content/shell/shell_download_manager_delegate.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698