| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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 #include "device/bluetooth/bluetooth_gatt_notify_session_win.h" | 5 #include "device/bluetooth/bluetooth_gatt_notify_session_mac.h" |
| 6 | 6 |
| 7 namespace device { | 7 namespace device { |
| 8 BluetoothGattNotifySessionWin::BluetoothGattNotifySessionWin( | 8 BluetoothGattNotifySessionMac::BluetoothGattNotifySessionMac( |
| 9 base::WeakPtr<BluetoothRemoteGattCharacteristicWin> characteristic) | 9 base::WeakPtr<BluetoothRemoteGattCharacteristicMac> characteristic) |
| 10 : characteristic_(characteristic) {} | 10 : characteristic_(characteristic) {} |
| 11 | 11 |
| 12 BluetoothGattNotifySessionWin::~BluetoothGattNotifySessionWin() {} | 12 BluetoothGattNotifySessionMac::~BluetoothGattNotifySessionMac() {} |
| 13 | 13 |
| 14 std::string BluetoothGattNotifySessionWin::GetCharacteristicIdentifier() const { | 14 std::string BluetoothGattNotifySessionMac::GetCharacteristicIdentifier() const { |
| 15 if (characteristic_.get()) | 15 if (characteristic_.get()) |
| 16 return characteristic_->GetIdentifier(); | 16 return characteristic_->GetIdentifier(); |
| 17 return std::string(); | 17 return std::string(); |
| 18 } | 18 } |
| 19 | 19 |
| 20 bool BluetoothGattNotifySessionWin::IsActive() { | 20 bool BluetoothGattNotifySessionMac::IsActive() { |
| 21 return characteristic_.get() != nullptr; | 21 return characteristic_.get() != nullptr; |
| 22 } | 22 } |
| 23 | 23 |
| 24 void BluetoothGattNotifySessionWin::Stop(const base::Closure& callback) { | 24 void BluetoothGattNotifySessionMac::Stop(const base::Closure& callback) { |
| 25 NOTIMPLEMENTED(); | 25 NOTIMPLEMENTED(); |
| 26 } | 26 } |
| 27 | 27 |
| 28 } // namespace device | 28 } // namespace device |
| OLD | NEW |