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

Unified Diff: chrome/browser/plugin_installer.cc

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 | « chrome/browser/download/download_extension_api.cc ('k') | content/browser/download/download_file_manager.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/plugin_installer.cc
===================================================================
--- chrome/browser/plugin_installer.cc (revision 125463)
+++ chrome/browser/plugin_installer.cc (working copy)
@@ -96,8 +96,8 @@
break;
}
case DownloadItem::INTERRUPTED: {
- InterruptReason reason = download->GetLastReason();
- DownloadError(InterruptReasonDebugString(reason));
+ content::DownloadInterruptReason reason = download->GetLastReason();
+ DownloadError(content::InterruptReasonDebugString(reason));
break;
}
case DownloadItem::MAX_DOWNLOAD_STATE: {
« no previous file with comments | « chrome/browser/download/download_extension_api.cc ('k') | content/browser/download/download_file_manager.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698