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

Unified Diff: content/test/mock_download_manager.h

Issue 9639001: Move download interrupt reasons to content\public (the enum that's used by chrome). The rest keep i… (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: nits Created 8 years, 9 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/test/mock_download_item.h ('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 125463)
+++ content/test/mock_download_manager.h (working copy)
@@ -40,10 +40,11 @@
int64 size,
const std::string& hash));
MOCK_METHOD1(CancelDownload, void(int32 download_id));
- MOCK_METHOD4(OnDownloadInterrupted, void(int32 download_id,
- int64 size,
- const std::string& hash_state,
- InterruptReason reason));
+ MOCK_METHOD4(OnDownloadInterrupted,
+ void(int32 download_id,
+ int64 size,
+ const std::string& hash_state,
+ content::DownloadInterruptReason reason));
MOCK_METHOD3(OnDownloadRenamedToFinalName, void(int download_id,
const FilePath& full_path,
int uniquifier));
« no previous file with comments | « content/test/mock_download_item.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698