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

Unified Diff: action_processor.h

Issue 4432002: AU: Separate error codes for different OmahaRequestAction failures. (Closed) Base URL: ssh://git@gitrw.chromium.org:9222/update_engine.git@master
Patch Set: Created 10 years, 1 month 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 | « no previous file | mock_http_fetcher.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: action_processor.h
diff --git a/action_processor.h b/action_processor.h
index 9bc4ef29500f69e49152c16a93185b481fecc519..2618c3961f0cb192e49d611a1ef2dacaba45c975 100644
--- a/action_processor.h
+++ b/action_processor.h
@@ -38,6 +38,12 @@ enum ActionExitCode {
kActionCodeDownloadPayloadVerificationError = 12,
kActionCodeDownloadAppliedUpdateVerificationError = 13,
kActionCodeDownloadWriteError = 14,
+ kActionCodeOmahaRequestEmptyResponseError = 200,
+ kActionCodeOmahaRequestXMLParseError = 201,
+ kActionCodeOmahaRequestNoUpdateCheckNode = 202,
+ kActionCodeOmahaRequestNoUpdateCheckStatus = 203,
+ kActionCodeOmahaRequestBadUpdateCheckStatus = 204,
+ kActionCodeOmahaRequestHTTPResponseBase = 2000, // + HTTP response code
};
class AbstractAction;
« no previous file with comments | « no previous file | mock_http_fetcher.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698