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

Unified Diff: omaha_response_handler_action.h

Issue 2981007: Rename UpdateCheckAction|Params to OmahaRequestAction|Params. (Closed) Base URL: ssh://git@gitrw.chromium.org:9222/update_engine.git
Patch Set: fix the comment Created 10 years, 5 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 | « omaha_request_prep_action_unittest.cc ('k') | omaha_response_handler_action.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: omaha_response_handler_action.h
diff --git a/omaha_response_handler_action.h b/omaha_response_handler_action.h
index e79e32b08a469ca4e8bb18bb90dc82b77340462a..b5feabdecd51b215171e3dd3a407d3752e72cf1f 100644
--- a/omaha_response_handler_action.h
+++ b/omaha_response_handler_action.h
@@ -8,7 +8,7 @@
#include <string>
#include "update_engine/action.h"
#include "update_engine/install_plan.h"
-#include "update_engine/update_check_action.h"
+#include "update_engine/omaha_request_action.h"
// This class reads in an Omaha response and converts what it sees into
// an install plan which is passed out.
@@ -20,7 +20,7 @@ class OmahaResponseHandlerAction;
template<>
class ActionTraits<OmahaResponseHandlerAction> {
public:
- typedef UpdateCheckResponse InputObjectType;
+ typedef OmahaResponse InputObjectType;
typedef InstallPlan OutputObjectType;
};
@@ -41,7 +41,7 @@ class OmahaResponseHandlerAction : public Action<OmahaResponseHandlerAction> {
void set_boot_device(const std::string& boot_device) {
boot_device_ = boot_device;
}
-
+
bool GotNoUpdateResponse() const { return got_no_update_response_; }
const InstallPlan& install_plan() const { return install_plan_; }
@@ -59,10 +59,10 @@ 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_;
« no previous file with comments | « omaha_request_prep_action_unittest.cc ('k') | omaha_response_handler_action.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698