| OLD | NEW | 
|   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  Loading... | 
|  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 | 
| OLD | NEW |