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

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

Issue 11150027: Handle the case where IAttachmentExecute::Save() deletes a downloaded file. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix Android Created 8 years, 2 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/browser/download/base_file.cc
diff --git a/content/browser/download/base_file.cc b/content/browser/download/base_file.cc
index 65fd7a1991ef5d3ce585985e3b5d33c8656a3c65..e63174b5e66029eb4af715e08c3d066fe8eeb084 100644
--- a/content/browser/download/base_file.cc
+++ b/content/browser/download/base_file.cc
@@ -217,7 +217,8 @@ void BaseFile::Finish() {
// OS_WIN, OS_MACOSX and OS_LINUX have specialized implementations.
#if !defined(OS_WIN) && !defined(OS_MACOSX) && !defined(OS_LINUX)
-void BaseFile::AnnotateWithSourceInformation() {
+content::DownloadInterruptReason BaseFile::AnnotateWithSourceInformation() {
+ return content::DOWNLOAD_INTERRUPT_REASON_NONE;
}
#endif

Powered by Google App Engine
This is Rietveld 408576698