summaryrefslogtreecommitdiffstats
path: root/components/pairing/shark_connection_listener.cc
blob: a6bc655f69512d18c444d60f6a3629b0f84bce1a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
// Copyright 2014 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "components/pairing/shark_connection_listener.h"

#include "base/logging.h"
#include "base/threading/thread_restrictions.h"
#include "components/pairing/bluetooth_host_pairing_controller.h"

namespace pairing_chromeos {

SharkConnectionListener::SharkConnectionListener(OnConnectedCallback callback)
    : callback_(callback) {
  controller_.reset(new BluetoothHostPairingController());
  controller_->AddObserver(this);
  controller_->StartPairing();
}

SharkConnectionListener::~SharkConnectionListener() {
  if (controller_)
    controller_->RemoveObserver(this);
}

void SharkConnectionListener::PairingStageChanged(Stage new_stage) {
  if (new_stage == HostPairingController::STAGE_WAITING_FOR_CODE_CONFIRMATION) {
    controller_->RemoveObserver(this);
    callback_.Run(controller_.Pass());
    callback_.Reset();
  }
}

}  // namespace pairing_chromeos