| 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_HOST_PAIRING_SCREEN_H_ | 5 #ifndef CHROME_BROWSER_CHROMEOS_LOGIN_SCREENS_HOST_PAIRING_SCREEN_H_ |
| 6 #define CHROME_BROWSER_CHROMEOS_LOGIN_SCREENS_HOST_PAIRING_SCREEN_H_ | 6 #define CHROME_BROWSER_CHROMEOS_LOGIN_SCREENS_HOST_PAIRING_SCREEN_H_ |
| 7 | 7 |
| 8 #include "base/macros.h" | 8 #include "base/macros.h" |
| 9 #include "chrome/browser/chromeos/login/screens/host_pairing_screen_actor.h" | 9 #include "chrome/browser/chromeos/login/screens/host_pairing_screen_actor.h" |
| 10 #include "chrome/browser/chromeos/login/screens/screen_context.h" | 10 #include "chrome/browser/chromeos/login/screens/screen_context.h" |
| 11 #include "chrome/browser/chromeos/login/screens/wizard_screen.h" | 11 #include "chrome/browser/chromeos/login/screens/wizard_screen.h" |
| 12 #include "chromeos/pairing/host_pairing_controller.h" | 12 #include "components/pairing/host_pairing_controller.h" |
| 13 | 13 |
| 14 namespace chromeos { | 14 namespace chromeos { |
| 15 | 15 |
| 16 class HostPairingScreen : public WizardScreen, | 16 class HostPairingScreen : public WizardScreen, |
| 17 public HostPairingController::Observer, | 17 public HostPairingController::Observer, |
| 18 public HostPairingScreenActor::Delegate { | 18 public HostPairingScreenActor::Delegate { |
| 19 public: | 19 public: |
| 20 HostPairingScreen(ScreenObserver* observer, HostPairingScreenActor* actor); | 20 HostPairingScreen(ScreenObserver* observer, HostPairingScreenActor* actor); |
| 21 virtual ~HostPairingScreen(); | 21 virtual ~HostPairingScreen(); |
| 22 | 22 |
| (...skipping 28 matching lines...) Expand all Loading... |
| 51 | 51 |
| 52 // Current stage of pairing process. | 52 // Current stage of pairing process. |
| 53 Stage current_stage_; | 53 Stage current_stage_; |
| 54 | 54 |
| 55 DISALLOW_COPY_AND_ASSIGN(HostPairingScreen); | 55 DISALLOW_COPY_AND_ASSIGN(HostPairingScreen); |
| 56 }; | 56 }; |
| 57 | 57 |
| 58 } // namespace chromeos | 58 } // namespace chromeos |
| 59 | 59 |
| 60 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_SCREENS_HOST_PAIRING_SCREEN_H_ | 60 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_SCREENS_HOST_PAIRING_SCREEN_H_ |
| OLD | NEW |