| 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 #ifndef CHROME_BROWSER_CHROMEOS_LOGIN_SCREENS_CONTROLLER_PAIRING_SCREEN_H_ | 5 #ifndef CHROME_BROWSER_CHROMEOS_LOGIN_SCREENS_CONTROLLER_PAIRING_SCREEN_H_ |
| 6 #define CHROME_BROWSER_CHROMEOS_LOGIN_SCREENS_CONTROLLER_PAIRING_SCREEN_H_ | 6 #define CHROME_BROWSER_CHROMEOS_LOGIN_SCREENS_CONTROLLER_PAIRING_SCREEN_H_ |
| 7 | 7 |
| 8 #include "base/macros.h" | 8 #include "base/macros.h" |
| 9 | 9 |
| 10 #include "chrome/browser/chromeos/login/screens/controller_pairing_screen_actor.
h" | 10 #include "chrome/browser/chromeos/login/screens/controller_pairing_screen_actor.
h" |
| 11 #include "chrome/browser/chromeos/login/screens/screen_context.h" | 11 #include "chrome/browser/chromeos/login/screens/screen_context.h" |
| 12 #include "chrome/browser/chromeos/login/screens/wizard_screen.h" | 12 #include "chrome/browser/chromeos/login/screens/wizard_screen.h" |
| 13 #include "chromeos/pairing/controller_pairing_controller.h" | 13 #include "components/pairing/controller_pairing_controller.h" |
| 14 | 14 |
| 15 namespace chromeos { | 15 namespace chromeos { |
| 16 | 16 |
| 17 class ControllerPairingScreen : public WizardScreen, | 17 class ControllerPairingScreen : public WizardScreen, |
| 18 public ControllerPairingController::Observer, | 18 public ControllerPairingController::Observer, |
| 19 public ControllerPairingScreenActor::Delegate { | 19 public ControllerPairingScreenActor::Delegate { |
| 20 public: | 20 public: |
| 21 ControllerPairingScreen(ScreenObserver* observer, | 21 ControllerPairingScreen(ScreenObserver* observer, |
| 22 ControllerPairingScreenActor* actor); | 22 ControllerPairingScreenActor* actor); |
| 23 virtual ~ControllerPairingScreen(); | 23 virtual ~ControllerPairingScreen(); |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 60 // If this one is |false| first device in device list will be preselected on | 60 // If this one is |false| first device in device list will be preselected on |
| 61 // next device list update. | 61 // next device list update. |
| 62 bool device_preselected_; | 62 bool device_preselected_; |
| 63 | 63 |
| 64 DISALLOW_COPY_AND_ASSIGN(ControllerPairingScreen); | 64 DISALLOW_COPY_AND_ASSIGN(ControllerPairingScreen); |
| 65 }; | 65 }; |
| 66 | 66 |
| 67 } // namespace chromeos | 67 } // namespace chromeos |
| 68 | 68 |
| 69 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_SCREENS_CONTROLLER_PAIRING_SCREEN_H_ | 69 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_SCREENS_CONTROLLER_PAIRING_SCREEN_H_ |
| OLD | NEW |