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 COMPONENTS_PAIRING_FAKE_HOST_PAIRING_CONTROLLER_H_ | 5 #ifndef COMPONENTS_PAIRING_FAKE_HOST_PAIRING_CONTROLLER_H_ |
6 #define COMPONENTS_PAIRING_FAKE_HOST_PAIRING_CONTROLLER_H_ | 6 #define COMPONENTS_PAIRING_FAKE_HOST_PAIRING_CONTROLLER_H_ |
7 | 7 |
8 #include "base/macros.h" | 8 #include "base/macros.h" |
9 #include "base/observer_list.h" | 9 #include "base/observer_list.h" |
10 #include "base/time/time.h" | 10 #include "base/time/time.h" |
(...skipping 24 matching lines...) Expand all Loading... |
35 | 35 |
36 // Overridden from HostPairingFlow: | 36 // Overridden from HostPairingFlow: |
37 virtual void AddObserver(Observer* observer) OVERRIDE; | 37 virtual void AddObserver(Observer* observer) OVERRIDE; |
38 virtual void RemoveObserver(Observer* observer) OVERRIDE; | 38 virtual void RemoveObserver(Observer* observer) OVERRIDE; |
39 virtual Stage GetCurrentStage() OVERRIDE; | 39 virtual Stage GetCurrentStage() OVERRIDE; |
40 virtual void StartPairing() OVERRIDE; | 40 virtual void StartPairing() OVERRIDE; |
41 virtual std::string GetDeviceName() OVERRIDE; | 41 virtual std::string GetDeviceName() OVERRIDE; |
42 virtual std::string GetConfirmationCode() OVERRIDE; | 42 virtual std::string GetConfirmationCode() OVERRIDE; |
43 virtual std::string GetEnrollmentDomain() OVERRIDE; | 43 virtual std::string GetEnrollmentDomain() OVERRIDE; |
44 virtual void OnUpdateStatusChanged(UpdateStatus update_status) OVERRIDE; | 44 virtual void OnUpdateStatusChanged(UpdateStatus update_status) OVERRIDE; |
| 45 virtual void SetEnrollmentComplete(bool success) OVERRIDE; |
45 | 46 |
46 private: | 47 private: |
47 void ChangeStage(Stage new_stage); | 48 void ChangeStage(Stage new_stage); |
48 void ChangeStageLater(Stage new_stage); | 49 void ChangeStageLater(Stage new_stage); |
49 | 50 |
50 // HostPairingFlow::Observer: | 51 // HostPairingFlow::Observer: |
51 virtual void PairingStageChanged(Stage new_stage) OVERRIDE; | 52 virtual void PairingStageChanged(Stage new_stage) OVERRIDE; |
52 virtual void ConfigureHost(bool accepted_eula, | 53 virtual void ConfigureHost(bool accepted_eula, |
53 const std::string& lang, | 54 const std::string& lang, |
54 const std::string& timezone, | 55 const std::string& timezone, |
(...skipping 14 matching lines...) Expand all Loading... |
69 bool start_after_update_; | 70 bool start_after_update_; |
70 | 71 |
71 std::string enrollment_domain_; | 72 std::string enrollment_domain_; |
72 | 73 |
73 DISALLOW_COPY_AND_ASSIGN(FakeHostPairingController); | 74 DISALLOW_COPY_AND_ASSIGN(FakeHostPairingController); |
74 }; | 75 }; |
75 | 76 |
76 } // namespace pairing_chromeos | 77 } // namespace pairing_chromeos |
77 | 78 |
78 #endif // COMPONENTS_PAIRING_FAKE_HOST_PAIRING_CONTROLLER_H_ | 79 #endif // COMPONENTS_PAIRING_FAKE_HOST_PAIRING_CONTROLLER_H_ |
OLD | NEW |