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

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

Issue 8222020: Merge 102535 - Fix lack of initialization for delegate delayed complete flag. (Closed) Base URL: svn://svn.chromium.org/chrome/branches/874/src/
Patch Set: Created 9 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
« no previous file with comments | « chrome/test/functional/PYAUTO_TESTS ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/download/download_item.cc
===================================================================
--- content/browser/download/download_item.cc (revision 104810)
+++ content/browser/download/download_item.cc (working copy)
@@ -182,7 +182,8 @@
is_temporary_(!info.save_info.file_path.empty()),
all_data_saved_(false),
opened_(false),
- open_enabled_(true) {
+ open_enabled_(true),
+ delegate_delayed_complete_(false) {
Init(true /* actively downloading */);
}
@@ -213,7 +214,8 @@
is_temporary_(false),
all_data_saved_(false),
opened_(false),
- open_enabled_(true) {
+ open_enabled_(true),
+ delegate_delayed_complete_(false) {
Init(true /* actively downloading */);
}
« no previous file with comments | « chrome/test/functional/PYAUTO_TESTS ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698