OLD | NEW |
1 // Copyright 2017 The Chromium Authors. All rights reserved. | 1 // Copyright 2017 The Chromium 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 #include "chrome/browser/chromeos/login/screens/screen_exit_code.h" | 5 #include "chrome/browser/chromeos/login/screens/screen_exit_code.h" |
6 | 6 |
7 #include "base/logging.h" | 7 #include "base/logging.h" |
8 | 8 |
9 namespace chromeos { | 9 namespace chromeos { |
10 | 10 |
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
57 case ScreenExitCode::ENABLE_DEBUGGING_CANCELED: | 57 case ScreenExitCode::ENABLE_DEBUGGING_CANCELED: |
58 return "ENABLE_DEBUGGING_CANCELED"; | 58 return "ENABLE_DEBUGGING_CANCELED"; |
59 case ScreenExitCode::ARC_TERMS_OF_SERVICE_FINISHED: | 59 case ScreenExitCode::ARC_TERMS_OF_SERVICE_FINISHED: |
60 return "ARC_TERMS_OF_SERVICE_FINISHED"; | 60 return "ARC_TERMS_OF_SERVICE_FINISHED"; |
61 case ScreenExitCode::UPDATE_ERROR_UPDATING_CRITICAL_UPDATE: | 61 case ScreenExitCode::UPDATE_ERROR_UPDATING_CRITICAL_UPDATE: |
62 return "UPDATE_ERROR_UPDATING_CRITICAL_UPDATE"; | 62 return "UPDATE_ERROR_UPDATING_CRITICAL_UPDATE"; |
63 case ScreenExitCode::VOICE_INTERACTION_VALUE_PROP_SKIPPED: | 63 case ScreenExitCode::VOICE_INTERACTION_VALUE_PROP_SKIPPED: |
64 return "VOICE_INTERACTION_VALUE_PROP_SKIPPED"; | 64 return "VOICE_INTERACTION_VALUE_PROP_SKIPPED"; |
65 case ScreenExitCode::VOICE_INTERACTION_VALUE_PROP_ACCEPTED: | 65 case ScreenExitCode::VOICE_INTERACTION_VALUE_PROP_ACCEPTED: |
66 return "VOICE_INTERACTION_VALUE_PROP_ACCEPTED"; | 66 return "VOICE_INTERACTION_VALUE_PROP_ACCEPTED"; |
| 67 case ScreenExitCode::WAIT_FOR_CONTAINER_READY_FINISHED: |
| 68 return "WAIT_FOR_CONTAINER_READY_FINISHED"; |
67 case ScreenExitCode::EXIT_CODES_COUNT: | 69 case ScreenExitCode::EXIT_CODES_COUNT: |
68 default: | 70 default: |
69 NOTREACHED(); | 71 NOTREACHED(); |
70 return ""; | 72 return ""; |
71 } | 73 } |
72 } | 74 } |
73 | 75 |
74 } // namespace chromeos | 76 } // namespace chromeos |
OLD | NEW |