Index: device/bluetooth/bluetooth_profile.cc |
diff --git a/device/bluetooth/bluetooth_profile.cc b/device/bluetooth/bluetooth_profile.cc |
new file mode 100644 |
index 0000000000000000000000000000000000000000..b0e54f79573da2d32f75454487ca2ccb2b7154b3 |
--- /dev/null |
+++ b/device/bluetooth/bluetooth_profile.cc |
@@ -0,0 +1,29 @@ |
+// Copyright (c) 2013 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 "device/bluetooth/bluetooth_profile.h" |
+ |
+#include <string> |
+ |
+namespace device { |
+ |
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!
|
+BluetoothProfile::BluetoothProfile() { |
+ |
+} |
+ |
+BluetoothProfile::~BluetoothProfile() { |
+ |
+} |
+ |
+ |
+// static |
+void BluetoothProfile::Register(const std::string& uuid, |
+ const Options& options, |
+ const ProfileCallback& callback) { |
+ // TODO(keybuk): Implement selection of the appropriate BluetoothProfile |
+ // subclass just like BluetoothAdapterFactory |
+ callback.Run(NULL); |
+} |
+ |
+} // namespace device |