Chromium Code Reviews| Index: chrome/browser/chromeos/bluetooth/bluetooth_socket.cc |
| diff --git a/chrome/browser/chromeos/bluetooth/bluetooth_socket.cc b/chrome/browser/chromeos/bluetooth/bluetooth_socket.cc |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..f79af34dc40c16956b360e8ca64b370e0b1ac5b6 |
| --- /dev/null |
| +++ b/chrome/browser/chromeos/bluetooth/bluetooth_socket.cc |
| @@ -0,0 +1,20 @@ |
| +// Copyright (c) 2012 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 "chrome/browser/chromeos/bluetooth/bluetooth_socket.h" |
| + |
| +#include "chrome/browser/chromeos/bluetooth/bluetooth_device.h" |
| + |
| +namespace chromeos { |
| + |
| +BluetoothSocket::BluetoothSocket( |
| + BluetoothDevice* device, const std::string& service_uuid, int fd) |
| + : device_(device), service_uuid_(service_uuid), fd_(fd) {} |
|
keybuk
2012/04/19 01:05:40
place initializers on separate lines for clarity
|
| + |
| +BluetoothSocket::~BluetoothSocket() { |
| + // close the socket |
| + NOTREACHED() << "NIY"; |
| +} |
| + |
| +} // namespace chromeos |