| Index: device/bluetooth/bluetooth_channel_mac.mm
|
| diff --git a/device/bluetooth/bluetooth_channel_mac.mm b/device/bluetooth/bluetooth_channel_mac.mm
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..63b8f6843737a8152df28da7448442b075d23993
|
| --- /dev/null
|
| +++ b/device/bluetooth/bluetooth_channel_mac.mm
|
| @@ -0,0 +1,22 @@
|
| +// 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 "device/bluetooth/bluetooth_channel_mac.h"
|
| +
|
| +#include "base/logging.h"
|
| +
|
| +namespace device {
|
| +
|
| +BluetoothChannelMac::BluetoothChannelMac() : socket_(NULL) {
|
| +}
|
| +
|
| +BluetoothChannelMac::~BluetoothChannelMac() {
|
| +}
|
| +
|
| +void BluetoothChannelMac::SetSocket(BluetoothSocketMac* socket) {
|
| + DCHECK(!socket_);
|
| + socket_ = socket;
|
| +}
|
| +
|
| +} // namespace device
|
|
|