| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium OS Authors. All rights reserved. | 1 // Copyright (c) 2010 The Chromium OS Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef CHROMEOS_PLATFORM_UPDATE_ENGINE_ACTION_PROCESSOR_H__ | 5 #ifndef CHROMEOS_PLATFORM_UPDATE_ENGINE_ACTION_PROCESSOR_H__ |
| 6 #define CHROMEOS_PLATFORM_UPDATE_ENGINE_ACTION_PROCESSOR_H__ | 6 #define CHROMEOS_PLATFORM_UPDATE_ENGINE_ACTION_PROCESSOR_H__ |
| 7 | 7 |
| 8 #include <deque> | 8 #include <deque> |
| 9 | 9 |
| 10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
| (...skipping 11 matching lines...) Expand all Loading... |
| 22 namespace chromeos_update_engine { | 22 namespace chromeos_update_engine { |
| 23 | 23 |
| 24 // Action exit codes. | 24 // Action exit codes. |
| 25 enum ActionExitCode { | 25 enum ActionExitCode { |
| 26 kActionCodeSuccess = 0, | 26 kActionCodeSuccess = 0, |
| 27 kActionCodeError = 1, | 27 kActionCodeError = 1, |
| 28 kActionCodeOmahaRequestError = 2, | 28 kActionCodeOmahaRequestError = 2, |
| 29 kActionCodeOmahaResponseHandlerError = 3, | 29 kActionCodeOmahaResponseHandlerError = 3, |
| 30 kActionCodeFilesystemCopierError = 4, | 30 kActionCodeFilesystemCopierError = 4, |
| 31 kActionCodePostinstallRunnerError = 5, | 31 kActionCodePostinstallRunnerError = 5, |
| 32 kActionCodeSetBootableFlagError = 6, | 32 kActionCodeSetBootableFlagError = 6, // TODO(petkov): Unused. Recycle? |
| 33 kActionCodeInstallDeviceOpenError = 7, | 33 kActionCodeInstallDeviceOpenError = 7, |
| 34 kActionCodeKernelDeviceOpenError = 8, | 34 kActionCodeKernelDeviceOpenError = 8, |
| 35 kActionCodeDownloadTransferError = 9, | 35 kActionCodeDownloadTransferError = 9, |
| 36 kActionCodeDownloadHashMismatchError = 10, | 36 kActionCodeDownloadHashMismatchError = 10, |
| 37 kActionCodeDownloadSizeMismatchError = 11, | 37 kActionCodeDownloadSizeMismatchError = 11, |
| 38 kActionCodeDownloadPayloadVerificationError = 12, | 38 kActionCodeDownloadPayloadVerificationError = 12, |
| 39 kActionCodeDownloadAppliedUpdateVerificationError = 13, | 39 kActionCodeDownloadAppliedUpdateVerificationError = 13, |
| 40 kActionCodeDownloadWriteError = 14, | 40 kActionCodeDownloadWriteError = 14, |
| 41 kActionCodeOmahaRequestEmptyResponseError = 200, | 41 kActionCodeOmahaRequestEmptyResponseError = 200, |
| 42 kActionCodeOmahaRequestXMLParseError = 201, | 42 kActionCodeOmahaRequestXMLParseError = 201, |
| (...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 116 // Called whenever an action has finished processing, either successfully | 116 // Called whenever an action has finished processing, either successfully |
| 117 // or otherwise. | 117 // or otherwise. |
| 118 virtual void ActionCompleted(ActionProcessor* processor, | 118 virtual void ActionCompleted(ActionProcessor* processor, |
| 119 AbstractAction* action, | 119 AbstractAction* action, |
| 120 ActionExitCode code) {} | 120 ActionExitCode code) {} |
| 121 }; | 121 }; |
| 122 | 122 |
| 123 } // namespace chromeos_update_engine | 123 } // namespace chromeos_update_engine |
| 124 | 124 |
| 125 #endif // CHROMEOS_PLATFORM_UPDATE_ENGINE_ACTION_PROCESSOR_H__ | 125 #endif // CHROMEOS_PLATFORM_UPDATE_ENGINE_ACTION_PROCESSOR_H__ |
| OLD | NEW |