diff options
author | Christopher Wiley <wiley@google.com> | 2015-10-01 17:17:41 -0700 |
---|---|---|
committer | Christopher Wiley <wiley@google.com> | 2015-10-05 12:42:31 -0700 |
commit | 3f97b5d26350ae4e3029c148189e88b15805bf25 (patch) | |
tree | de25886761f6d224542ae5a55db28fbd27e51708 /update_status_utils.h | |
parent | cc8ce0e3b11ac76412c26c687d11140cbe18ad91 (diff) |
Add helper to convert strings to UpdateStatus values
This is useful for decyphering the statuses returned over
the DBus interface.
Bug: 24547247
Test: mmm system/update_engine; emerge-panther update_engine
Change-Id: Ifce74450209a7e7cb632c2fee7b54364ffaf3ff5
Diffstat (limited to 'update_status_utils.h')
-rw-r--r-- | update_status_utils.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/update_status_utils.h b/update_status_utils.h index 8a07ebe3..78d35302 100644 --- a/update_status_utils.h +++ b/update_status_utils.h @@ -17,12 +17,17 @@ #ifndef CLIENT_LIBRARY_UPDATE_STATUS_TO_STRING_H_ #define CLIENT_LIBRARY_UPDATE_STATUS_TO_STRING_H_ +#include <string> + #include "update_engine/update_status.h" namespace chromeos_update_engine { const char* UpdateStatusToString(const update_engine::UpdateStatus& status); +bool StringToUpdateStatus(const std::string& update_status_as_string, + update_engine::UpdateStatus* status); + } // namespace chromeos_update_engine #endif // CLIENT_LIBRARY_UPDATE_STATUS_TO_STRING_H_ |