Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright 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 // TODO(scottmg): http://crbug.com/237249 This is called from common, but | |
|
jam
2013/07/17 16:23:37
i have a very strong aversion to stub files. can w
scottmg
2013/07/17 16:49:35
pulled required bluetooth into device_bluetooth_co
jam
2013/07/17 18:09:58
device/bluetooth seems like it's code that should
| |
| 6 // the caller seems like it probably belongs in the browser. (?) | |
| 7 | |
| 8 #include "base/logging.h" | |
| 9 #include "device/bluetooth/bluetooth_adapter_factory.h" | |
| 10 #include "device/bluetooth/bluetooth_utils.h" | |
| 11 | |
| 12 namespace device { | |
| 13 | |
| 14 scoped_refptr<BluetoothAdapter> BluetoothAdapterFactory::MaybeGetAdapter() { | |
| 15 NOTREACHED(); | |
| 16 return NULL; | |
| 17 } | |
| 18 | |
| 19 namespace bluetooth_utils { | |
| 20 | |
| 21 std::string CanonicalUuid(std::string uuid) { | |
| 22 NOTREACHED(); | |
| 23 return ""; | |
| 24 } | |
| 25 | |
| 26 } // namespace bluetooth_utils | |
| 27 | |
| 28 } // namespace device | |
| OLD | NEW |