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

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

Issue 898453002: HID-detection screen moved to screenContext. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 10 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
(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/hid_detection_model.h"
6
7 #include "chrome/browser/chromeos/login/wizard_controller.h"
8
9 namespace chromeos {
10
11 const char HIDDetectionModel::kContextKeyKeyboardState[] = "keyboard-state";
12 const char HIDDetectionModel::kContextKeyMouseState[] = "mouse-state";
13 const char HIDDetectionModel::kContextKeyPincode[] = "keyboard-pincode";
14 const char HIDDetectionModel::kContextKeyEnteredPartPincode[] =
15 "entered-part-pincode";
16 const char HIDDetectionModel::kContextKeyMouseDeviceName[] =
17 "mouse-device-name";
18 const char HIDDetectionModel::kContextKeyKeyboardDeviceName[] =
19 "keyboard-device-name";
20 const char HIDDetectionModel::kContextKeyKeyboardLabel[] =
21 "keyboard-device-label";
22 const char HIDDetectionModel::kContextKeyContinueButtonEnabled[] =
23 "continue-button-enabled";
24
25 HIDDetectionModel::HIDDetectionModel(BaseScreenDelegate* base_screen_delegate)
26 : BaseScreen(base_screen_delegate) {
27 }
28
29 HIDDetectionModel::~HIDDetectionModel() {
30 }
31
32 std::string HIDDetectionModel::GetName() const {
33 return WizardController::kHIDDetectionScreenName;
34 }
35
36 } // namespace chromeos
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698