summaryrefslogtreecommitdiff
path: root/action_processor.h
diff options
context:
space:
mode:
authorDarin Petkov <petkov@chromium.org>2010-07-20 12:37:43 -0700
committerDarin Petkov <petkov@chromium.org>2010-07-20 12:37:43 -0700
commitc97435cceaddaa7933e60a3a8d16bc26bb1fabb6 (patch)
treeb0ba1ad9e97daf8f6ea2a30a00a3f575dded3ccb /action_processor.h
parent09f96c384e1e5f4d3a1229babd9a1b204daf4927 (diff)
Add and emit download action error codes.
BUG=560 TEST=unit tests Review URL: http://codereview.chromium.org/3046007
Diffstat (limited to 'action_processor.h')
-rw-r--r--action_processor.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/action_processor.h b/action_processor.h
index f04345df..7b1a312d 100644
--- a/action_processor.h
+++ b/action_processor.h
@@ -25,6 +25,10 @@ namespace chromeos_update_engine {
enum ActionExitCode {
kActionCodeSuccess = 0,
kActionCodeError = 1,
+ kActionCodeInstallDeviceOpenError = 2,
+ kActionCodeKernelDeviceOpenError = 3,
+ kActionCodeDownloadTransferError = 4,
+ kActionCodeDownloadHashMismatchError = 5,
};
class AbstractAction;