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

Unified Diff: src/platform/update_engine/action_processor.cc

Issue 492008: AU: Try delta updates first, then full updates (Closed)
Patch Set: use mkstemp Created 11 years 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: src/platform/update_engine/action_processor.cc
diff --git a/src/platform/update_engine/action_processor.cc b/src/platform/update_engine/action_processor.cc
index 21a88f1d175ac5368c18bb9cb28a1f804b7c768b..d58b5ee39b1cbeb925600aef4a4202c8290666ac 100644
--- a/src/platform/update_engine/action_processor.cc
+++ b/src/platform/update_engine/action_processor.cc
@@ -3,9 +3,12 @@
// found in the LICENSE file.
#include "update_engine/action_processor.h"
+#include <string>
#include "chromeos/obsolete_logging.h"
#include "update_engine/action.h"
+using std::string;
+
namespace chromeos_update_engine {
ActionProcessor::ActionProcessor()
@@ -70,7 +73,7 @@ void ActionProcessor::ActionComplete(AbstractAction* actionptr,
LOG(INFO) << "ActionProcessor::ActionComplete: finished last action of"
" type " << old_type;
if (delegate_) {
- delegate_->ProcessingDone(this);
+ delegate_->ProcessingDone(this, success);
}
return;
}
« no previous file with comments | « src/platform/update_engine/action_processor.h ('k') | src/platform/update_engine/action_processor_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698