OLD | NEW |
---|---|
(Empty) | |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | |
2 // Use of this source code is governed by a BSD-style license that can be | |
3 // found in the LICENSE file. | |
4 | |
5 #include "chrome/browser/chromeos/bluetooth/bluetooth_socket.h" | |
6 | |
7 #include "chrome/browser/chromeos/bluetooth/bluetooth_device.h" | |
8 | |
9 namespace chromeos { | |
10 | |
11 BluetoothSocket::BluetoothSocket( | |
12 BluetoothDevice *device, const std::string &service_uuid, int id) | |
keybuk
2012/04/16 22:25:36
nit: "* " and "& " not " *" and " &"
| |
13 : device_(device), service_uuid_(service_uuid), id_(id) {} | |
14 | |
15 void BluetoothSocket::Close() { | |
16 // TODO(keybuk): dbus stuff | |
keybuk
2012/04/16 22:25:36
no dbus here, all socket ;)
| |
17 NOTREACHED() << "NIY"; | |
18 } | |
19 | |
20 } // namespace chromeos | |
OLD | NEW |