Searched defs:new_stage (Results 1 - 8 of 8) sorted by relevance

/external/chromium_org/components/pairing/
H A Dshark_connection_listener.cc25 void SharkConnectionListener::PairingStageChanged(Stage new_stage) { argument
26 if (new_stage == HostPairingController::STAGE_WAITING_FOR_CODE_CONFIRMATION) {
H A Dfake_host_pairing_controller.cc77 void FakeHostPairingController::ChangeStage(Stage new_stage) { argument
78 if (current_stage_ == new_stage)
80 current_stage_ = new_stage;
81 FOR_EACH_OBSERVER(Observer, observers_, PairingStageChanged(new_stage));
84 void FakeHostPairingController::ChangeStageLater(Stage new_stage) { argument
89 new_stage),
134 void FakeHostPairingController::PairingStageChanged(Stage new_stage) { argument
135 switch (new_stage) {
H A Dfake_controller_pairing_controller.cc228 void FakeControllerPairingController::ChangeStage(Stage new_stage) { argument
229 if (current_stage_ == new_stage)
231 current_stage_ = new_stage;
232 FOR_EACH_OBSERVER(Observer, observers_, PairingStageChanged(new_stage));
235 void FakeControllerPairingController::ChangeStageLater(Stage new_stage) { argument
240 new_stage),
288 void FakeControllerPairingController::PairingStageChanged(Stage new_stage) { argument
290 switch (new_stage) {
332 if (new_stage == connection_lost_begin_) {
H A Dbluetooth_controller_pairing_controller.cc46 void BluetoothControllerPairingController::ChangeStage(Stage new_stage) { argument
47 if (current_stage_ == new_stage)
49 current_stage_ = new_stage;
51 PairingStageChanged(new_stage));
H A Dbluetooth_host_pairing_controller.cc40 void BluetoothHostPairingController::ChangeStage(Stage new_stage) { argument
41 if (current_stage_ == new_stage)
43 current_stage_ = new_stage;
44 FOR_EACH_OBSERVER(Observer, observers_, PairingStageChanged(new_stage));
/external/chromium_org/chrome/browser/chromeos/login/screens/
H A Dhost_pairing_screen.cc61 void HostPairingScreen::PairingStageChanged(Stage new_stage) { argument
63 switch (new_stage) {
107 current_stage_ = new_stage;
H A Dcontroller_pairing_screen.cc72 void ControllerPairingScreen::PairingStageChanged(Stage new_stage) { argument
73 DCHECK(new_stage != current_stage_);
76 switch (new_stage) {
138 current_stage_ = new_stage;
/external/chromium_org/chrome/browser/chromeos/login/enrollment/
H A Denrollment_screen.cc127 void EnrollmentScreen::PairingStageChanged(Stage new_stage) { argument
129 if (new_stage == HostPairingController::STAGE_FINISHED) {

Completed in 654 milliseconds