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

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

Issue 326933004: Example of usage of new features of context and screen. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 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 | Annotate | Revision Log
OLDNEW
(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 const char kContextKeyPage[] = "page";
12 const char kContextKeyControlsDisabled[] = "controlsDisabled";
13 const char kContextKeyDevices[] = "devices";
14 const char kContextKeyConfirmationCode[] = "code";
15 const char kContextKeySelectedDevice[] = "selectedDevice";
16 const char kContextKeyAccountId[] = "accountId";
17
18 const char kPageDevicesDiscovery[] = "devices-discovery";
19 const char kPageDeviceSelect[] = "device-select";
20 const char kPageDeviceNotFound[] = "device-not-found";
21 const char kPageEstablishingConnection[] = "establishing-connection";
22 const char kPageEstablishingConnectionError[] = "establishing-connection-error";
23 const char kPageCodeConfirmation[] = "code-confirmation";
24 const char kPageHostUpdate[] = "host-update";
25 const char kPageHostConnectionLost[] = "host-connection-lost";
26 const char kPageEnrlollmentIntroduction[] = "enrollment-introduction";
27 const char kPageAuthentication[] = "authentication";
28 const char kPageHostEnrollment[] = "host-enrollment";
29 const char kPageHostEnrollmentError[] = "host-enrollment-error";
30 const char kPagePairingDone[] = "pairing-done";
31
32 const char kActionChooseDevice[] = "chooseDevice";
33 const char kActionRepeatDiscovery[] = "repeatDiscovery";
34 const char kActionAcceptCode[] = "acceptCode";
35 const char kActionRejectCode[] = "rejectCode";
36 const char kActionProceedToAuthentication[] = "proceedToAuthentication";
37 const char kActionEnroll[] = "enroll";
38 const char kActionStartSession[] = "startSession";
39
40 } // namespace controller_pairing
41 ControllerPairingScreenActor::ControllerPairingScreenActor() {
42 }
43
44 ControllerPairingScreenActor::~ControllerPairingScreenActor() {
45 }
46
47 } // namespace chromeos
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698