| 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 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 53 case ScreenExitCode::CONTROLLER_PAIRING_FINISHED: | 53 case ScreenExitCode::CONTROLLER_PAIRING_FINISHED: |
| 54 return "CONTROLLER_PAIRING_FINISHED"; | 54 return "CONTROLLER_PAIRING_FINISHED"; |
| 55 case ScreenExitCode::ENABLE_DEBUGGING_FINISHED: | 55 case ScreenExitCode::ENABLE_DEBUGGING_FINISHED: |
| 56 return "ENABLE_DEBUGGING_FINISHED"; | 56 return "ENABLE_DEBUGGING_FINISHED"; |
| 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: |
| 64 return "VOICE_INTERACTION_VALUE_PROP_SKIPPED"; |
| 65 case ScreenExitCode::VOICE_INTERACTION_VALUE_PROP_ACCEPTED: |
| 66 return "VOICE_INTERACTION_VALUE_PROP_ACCEPTED"; |
| 63 case ScreenExitCode::EXIT_CODES_COUNT: | 67 case ScreenExitCode::EXIT_CODES_COUNT: |
| 64 default: | 68 default: |
| 65 NOTREACHED(); | 69 NOTREACHED(); |
| 66 return ""; | 70 return ""; |
| 67 } | 71 } |
| 68 } | 72 } |
| 69 | 73 |
| 70 } // namespace chromeos | 74 } // namespace chromeos |
| OLD | NEW |