| OLD | NEW |
| (Empty) |
| 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 | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #include "chrome/browser/chromeos/login/screens/controller_pairing_screen_actor.
h" | |
| 6 | |
| 7 namespace chromeos { | |
| 8 | |
| 9 namespace controller_pairing { | |
| 10 | |
| 11 // Keep these constants synced with corresponding constants defined in | |
| 12 // oobe_screen_controller_pairing.js. | |
| 13 const char kContextKeyPage[] = "page"; | |
| 14 const char kContextKeyControlsDisabled[] = "controlsDisabled"; | |
| 15 const char kContextKeyDevices[] = "devices"; | |
| 16 const char kContextKeyConfirmationCode[] = "code"; | |
| 17 const char kContextKeySelectedDevice[] = "selectedDevice"; | |
| 18 const char kContextKeyAccountId[] = "accountId"; | |
| 19 const char kContextKeyEnrollmentDomain[] = "enrollmentDomain"; | |
| 20 | |
| 21 const char kPageDevicesDiscovery[] = "devices-discovery"; | |
| 22 const char kPageDeviceSelect[] = "device-select"; | |
| 23 const char kPageDeviceNotFound[] = "device-not-found"; | |
| 24 const char kPageEstablishingConnection[] = "establishing-connection"; | |
| 25 const char kPageEstablishingConnectionError[] = "establishing-connection-error"; | |
| 26 const char kPageCodeConfirmation[] = "code-confirmation"; | |
| 27 const char kPageHostNetworkError[] = "host-network-error"; | |
| 28 const char kPageHostUpdate[] = "host-update"; | |
| 29 const char kPageHostConnectionLost[] = "host-connection-lost"; | |
| 30 const char kPageEnrollmentIntroduction[] = "enrollment-introduction"; | |
| 31 const char kPageAuthentication[] = "authentication"; | |
| 32 const char kPageHostEnrollment[] = "host-enrollment"; | |
| 33 const char kPageHostEnrollmentError[] = "host-enrollment-error"; | |
| 34 const char kPagePairingDone[] = "pairing-done"; | |
| 35 | |
| 36 const char kActionChooseDevice[] = "chooseDevice"; | |
| 37 const char kActionRepeatDiscovery[] = "repeatDiscovery"; | |
| 38 const char kActionAcceptCode[] = "acceptCode"; | |
| 39 const char kActionRejectCode[] = "rejectCode"; | |
| 40 const char kActionProceedToAuthentication[] = "proceedToAuthentication"; | |
| 41 const char kActionEnroll[] = "enroll"; | |
| 42 const char kActionStartSession[] = "startSession"; | |
| 43 | |
| 44 } // namespace controller_pairing | |
| 45 | |
| 46 ControllerPairingScreenActor::ControllerPairingScreenActor() { | |
| 47 } | |
| 48 | |
| 49 ControllerPairingScreenActor::~ControllerPairingScreenActor() { | |
| 50 } | |
| 51 | |
| 52 } // namespace chromeos | |
| OLD | NEW |