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

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

Issue 2700303002: cros: Unify oobe View/Actor naming to just View. (Closed)
Patch Set: Rebase Created 3 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
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/controller_pairing_screen_actor. h" 5 #include "chrome/browser/chromeos/login/screens/controller_pairing_screen_view.h "
6 6
7 namespace chromeos { 7 namespace chromeos {
8 8
9 namespace controller_pairing { 9 namespace controller_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_controller_pairing.js. 12 // oobe_screen_controller_pairing.js.
13 const char kContextKeyPage[] = "page"; 13 const char kContextKeyPage[] = "page";
14 const char kContextKeyControlsDisabled[] = "controlsDisabled"; 14 const char kContextKeyControlsDisabled[] = "controlsDisabled";
15 const char kContextKeyDevices[] = "devices"; 15 const char kContextKeyDevices[] = "devices";
(...skipping 20 matching lines...) Expand all
36 const char kActionChooseDevice[] = "chooseDevice"; 36 const char kActionChooseDevice[] = "chooseDevice";
37 const char kActionRepeatDiscovery[] = "repeatDiscovery"; 37 const char kActionRepeatDiscovery[] = "repeatDiscovery";
38 const char kActionAcceptCode[] = "acceptCode"; 38 const char kActionAcceptCode[] = "acceptCode";
39 const char kActionRejectCode[] = "rejectCode"; 39 const char kActionRejectCode[] = "rejectCode";
40 const char kActionProceedToAuthentication[] = "proceedToAuthentication"; 40 const char kActionProceedToAuthentication[] = "proceedToAuthentication";
41 const char kActionEnroll[] = "enroll"; 41 const char kActionEnroll[] = "enroll";
42 const char kActionStartSession[] = "startSession"; 42 const char kActionStartSession[] = "startSession";
43 43
44 } // namespace controller_pairing 44 } // namespace controller_pairing
45 45
46 ControllerPairingScreenActor::ControllerPairingScreenActor() { 46 ControllerPairingScreenView::ControllerPairingScreenView() {}
47 }
48 47
49 ControllerPairingScreenActor::~ControllerPairingScreenActor() { 48 ControllerPairingScreenView::~ControllerPairingScreenView() {}
50 }
51 49
52 } // namespace chromeos 50 } // namespace chromeos
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698