Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(220)

Side by Side Diff: components/pairing/fake_host_pairing_controller.h

Issue 555003002: Add method for telling the Pairing API that enrollment is complete (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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
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_
OLDNEW
« no previous file with comments | « components/pairing/bluetooth_pairing_constants.cc ('k') | components/pairing/fake_host_pairing_controller.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698