| 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/base_screen.h" |
| 9 #include "chrome/browser/chromeos/login/screens/host_pairing_screen_actor.h" | 10 #include "chrome/browser/chromeos/login/screens/host_pairing_screen_actor.h" |
| 10 #include "chrome/browser/chromeos/login/screens/screen_context.h" | 11 #include "chrome/browser/chromeos/login/screens/screen_context.h" |
| 11 #include "chrome/browser/chromeos/login/screens/wizard_screen.h" | |
| 12 #include "components/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 : | 16 class HostPairingScreen |
| 17 public WizardScreen, | 17 : public BaseScreen, |
| 18 public pairing_chromeos::HostPairingController::Observer, | 18 public pairing_chromeos::HostPairingController::Observer, |
| 19 public HostPairingScreenActor::Delegate { | 19 public HostPairingScreenActor::Delegate { |
| 20 public: | 20 public: |
| 21 HostPairingScreen(ScreenObserver* observer, HostPairingScreenActor* actor, | 21 HostPairingScreen(ScreenObserver* observer, HostPairingScreenActor* actor, |
| 22 pairing_chromeos::HostPairingController* remora_controller); | 22 pairing_chromeos::HostPairingController* remora_controller); |
| 23 virtual ~HostPairingScreen(); | 23 virtual ~HostPairingScreen(); |
| 24 | 24 |
| 25 private: | 25 private: |
| 26 typedef pairing_chromeos::HostPairingController::Stage Stage; | 26 typedef pairing_chromeos::HostPairingController::Stage Stage; |
| 27 | 27 |
| 28 void CommitContextChanges(); | 28 void CommitContextChanges(); |
| 29 | 29 |
| 30 // Overridden from WizardScreen: | 30 // Overridden from BaseScreen: |
| 31 virtual void PrepareToShow() override; | 31 virtual void PrepareToShow() override; |
| 32 virtual void Show() override; | 32 virtual void Show() override; |
| 33 virtual void Hide() override; | 33 virtual void Hide() override; |
| 34 virtual std::string GetName() const override; | 34 virtual std::string GetName() const override; |
| 35 | 35 |
| 36 // pairing_chromeos::HostPairingController::Observer: | 36 // pairing_chromeos::HostPairingController::Observer: |
| 37 virtual void PairingStageChanged(Stage new_stage) override; | 37 virtual void PairingStageChanged(Stage new_stage) override; |
| 38 virtual void ConfigureHost(bool accepted_eula, | 38 virtual void ConfigureHost(bool accepted_eula, |
| 39 const std::string& lang, | 39 const std::string& lang, |
| 40 const std::string& timezone, | 40 const std::string& timezone, |
| (...skipping 15 matching lines...) Expand all Loading... |
| 56 | 56 |
| 57 // Current stage of pairing process. | 57 // Current stage of pairing process. |
| 58 Stage current_stage_; | 58 Stage current_stage_; |
| 59 | 59 |
| 60 DISALLOW_COPY_AND_ASSIGN(HostPairingScreen); | 60 DISALLOW_COPY_AND_ASSIGN(HostPairingScreen); |
| 61 }; | 61 }; |
| 62 | 62 |
| 63 } // namespace chromeos | 63 } // namespace chromeos |
| 64 | 64 |
| 65 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_SCREENS_HOST_PAIRING_SCREEN_H_ | 65 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_SCREENS_HOST_PAIRING_SCREEN_H_ |
| OLD | NEW |