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

Unified Diff: src/platform/update_engine/omaha_response_handler_action.h

Issue 2037002: AU: DBus support. (Closed) Base URL: ssh://git@chromiumos-git/chromeos
Patch Set: fixes for review Created 10 years, 7 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: src/platform/update_engine/omaha_response_handler_action.h
diff --git a/src/platform/update_engine/omaha_response_handler_action.h b/src/platform/update_engine/omaha_response_handler_action.h
index b56d343b3aecf2fe58f36fac6ccbfbfde7c6e08a..e79e32b08a469ca4e8bb18bb90dc82b77340462a 100644
--- a/src/platform/update_engine/omaha_response_handler_action.h
+++ b/src/platform/update_engine/omaha_response_handler_action.h
@@ -43,6 +43,7 @@ class OmahaResponseHandlerAction : public Action<OmahaResponseHandlerAction> {
}
bool GotNoUpdateResponse() const { return got_no_update_response_; }
+ const InstallPlan& install_plan() const { return install_plan_; }
// Debugging/logging
static std::string StaticType() { return "OmahaResponseHandlerAction"; }
@@ -59,6 +60,9 @@ class OmahaResponseHandlerAction : public Action<OmahaResponseHandlerAction> {
// set to non-empty in unit tests
std::string boot_device_;
+ // The install plan, if we have an update.
+ InstallPlan install_plan_;
+
// True only if we got a response and the response said no updates
bool got_no_update_response_;

Powered by Google App Engine
This is Rietveld 408576698