Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(155)

Side by Side Diff: chrome/browser/chromeos/login/screens/screen_exit_code.cc

Issue 2947483002: Create OOBE screen for Waiting for Container ready (Closed)
Patch Set: Rebase and run js format Created 3 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698