host_pairing_screen_actor.cc revision 116680a4aac90f2aa7413d9095a592090648e557
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/host_pairing_screen_actor.h"
6
7namespace chromeos {
8
9namespace host_pairing {
10
11// Keep these constants synced with corresponding constants defined in
12// oobe_screen_host_pairing.js.
13const char kContextKeyPage[] = "page";
14const char kContextKeyDeviceName[] = "deviceName";
15const char kContextKeyConfirmationCode[] = "code";
16const char kContextKeyEnrollmentDomain[] = "enrollmentDomain";
17const char kContextKeyUpdateProgress[] = "updateProgress";
18
19const char kPageWelcome[] = "welcome";
20const char kPageCodeConfirmation[] = "code-confirmation";
21const char kPageUpdate[] = "update";
22const char kPageEnrollmentIntroduction[] = "enrollment-introduction";
23const char kPageEnrollment[] = "enrollment";
24const char kPageEnrollmentError[] = "enrollment-error";
25const char kPagePairingDone[] = "pairing-done";
26
27}  // namespace host_pairing
28
29HostPairingScreenActor::HostPairingScreenActor() {
30}
31
32HostPairingScreenActor::~HostPairingScreenActor() {
33}
34
35}  // namespace chromeos
36