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

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

Issue 1535573002: 1) Add initialization error page; 2) Add connection error page. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: We don't need to set enrollment related local state for a host device since Enrollment Screen doesn… Created 5 years 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 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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/host_pairing_screen_actor.h" 5 #include "chrome/browser/chromeos/login/screens/host_pairing_screen_actor.h"
6 6
7 namespace chromeos { 7 namespace chromeos {
8 8
9 namespace host_pairing { 9 namespace host_pairing {
10 10
11 // Keep these constants synced with corresponding constants defined in 11 // Keep these constants synced with corresponding constants defined in
12 // oobe_screen_host_pairing.js. 12 // oobe_screen_host_pairing.js.
13 const char kContextKeyPage[] = "page"; 13 const char kContextKeyPage[] = "page";
14 const char kContextKeyDeviceName[] = "deviceName"; 14 const char kContextKeyDeviceName[] = "deviceName";
15 const char kContextKeyConfirmationCode[] = "code"; 15 const char kContextKeyConfirmationCode[] = "code";
16 const char kContextKeyEnrollmentDomain[] = "enrollmentDomain"; 16 const char kContextKeyEnrollmentDomain[] = "enrollmentDomain";
17 const char kContextKeyUpdateProgress[] = "updateProgress"; 17 const char kContextKeyUpdateProgress[] = "updateProgress";
18 18
19 const char kPageWelcome[] = "welcome"; 19 const char kPageWelcome[] = "welcome";
20 const char kPageIntializationError[] = "initialization-error";
20 const char kPageCodeConfirmation[] = "code-confirmation"; 21 const char kPageCodeConfirmation[] = "code-confirmation";
22 const char kPageConnectionError[] = "connection-error";
21 const char kPageSetupBasicConfiguration[] = "setup-basic-configuration"; 23 const char kPageSetupBasicConfiguration[] = "setup-basic-configuration";
22 const char kPageSetupNetworkError[] = "setup-network-error"; 24 const char kPageSetupNetworkError[] = "setup-network-error";
23 const char kPageUpdate[] = "update"; 25 const char kPageUpdate[] = "update";
24 const char kPageEnrollmentIntroduction[] = "enrollment-introduction"; 26 const char kPageEnrollmentIntroduction[] = "enrollment-introduction";
25 const char kPageEnrollment[] = "enrollment"; 27 const char kPageEnrollment[] = "enrollment";
26 const char kPageEnrollmentError[] = "enrollment-error"; 28 const char kPageEnrollmentError[] = "enrollment-error";
27 const char kPagePairingDone[] = "pairing-done"; 29 const char kPagePairingDone[] = "pairing-done";
28 30
29 } // namespace host_pairing 31 } // namespace host_pairing
30 32
31 HostPairingScreenActor::HostPairingScreenActor() { 33 HostPairingScreenActor::HostPairingScreenActor() {
32 } 34 }
33 35
34 HostPairingScreenActor::~HostPairingScreenActor() { 36 HostPairingScreenActor::~HostPairingScreenActor() {
35 } 37 }
36 38
37 } // namespace chromeos 39 } // namespace chromeos
OLDNEW
« no previous file with comments | « chrome/browser/chromeos/login/screens/host_pairing_screen_actor.h ('k') | chrome/browser/chromeos/login/wizard_controller.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698