OLD | NEW |
---|---|
(Empty) | |
1 // Copyright (c) 2013 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 "device/bluetooth/bluetooth_profile.h" | |
6 | |
7 #include <string> | |
8 | |
9 namespace device { | |
10 | |
youngki
2013/04/19 16:26:36
Don't we have to put the BluetoothProfile::Options
keybuk
2013/04/19 17:58:18
Yes, this is still "draft to see if youngki approv
youngki
2013/04/19 18:20:39
ship it!
| |
11 BluetoothProfile::BluetoothProfile() { | |
12 | |
13 } | |
14 | |
15 BluetoothProfile::~BluetoothProfile() { | |
16 | |
17 } | |
18 | |
19 | |
20 // static | |
21 void BluetoothProfile::Register(const std::string& uuid, | |
22 const Options& options, | |
23 const ProfileCallback& callback) { | |
24 // TODO(keybuk): Implement selection of the appropriate BluetoothProfile | |
25 // subclass just like BluetoothAdapterFactory | |
26 callback.Run(NULL); | |
27 } | |
28 | |
29 } // namespace device | |
OLD | NEW |