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 |
| 11 BluetoothProfile::Options::Options() |
| 12 : channel(0), |
| 13 psm(0), |
| 14 require_authentication(false), |
| 15 require_authorization(false), |
| 16 version(0), |
| 17 features(0) { |
| 18 } |
| 19 |
| 20 BluetoothProfile::Options::~Options() { |
| 21 |
| 22 } |
| 23 |
| 24 |
| 25 BluetoothProfile::BluetoothProfile() { |
| 26 |
| 27 } |
| 28 |
| 29 BluetoothProfile::~BluetoothProfile() { |
| 30 |
| 31 } |
| 32 |
| 33 |
| 34 // static |
| 35 void BluetoothProfile::Register(const std::string& uuid, |
| 36 const Options& options, |
| 37 const ProfileCallback& callback) { |
| 38 // TODO(keybuk): Implement selection of the appropriate BluetoothProfile |
| 39 // subclass just like BluetoothAdapterFactory |
| 40 callback.Run(NULL); |
| 41 } |
| 42 |
| 43 } // namespace device |
OLD | NEW |