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_; |