Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2318)

Unified Diff: chrome/browser/extensions/api/bluetooth/bluetooth_api_utils.h

Issue 10899037: Refactoring bluetooth API code. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Added #include <string> into bluetooth_adapter_dbus.cc. Created 8 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/extensions/api/bluetooth/bluetooth_api_utils.h
diff --git a/chrome/browser/extensions/api/bluetooth/bluetooth_api_utils.h b/chrome/browser/extensions/api/bluetooth/bluetooth_api_utils.h
index cb8d0898b51b0bc76980c7d424af7b19c5774a5b..25dd75ea2aeaea31931c236f043e9314f62693f6 100644
--- a/chrome/browser/extensions/api/bluetooth/bluetooth_api_utils.h
+++ b/chrome/browser/extensions/api/bluetooth/bluetooth_api_utils.h
@@ -8,20 +8,21 @@
#if defined(OS_CHROMEOS)
#include "base/values.h"
-#include "chrome/browser/chromeos/bluetooth/bluetooth_device.h"
+#include "chrome/browser/chromeos/bluetooth/bluetooth_device_dbus.h"
#include "chrome/common/extensions/api/experimental_bluetooth.h"
namespace extensions {
namespace api {
namespace experimental_bluetooth {
-// Fill in a Device object from a chromeos::BluetoothDevice.
+// Fill in a Device object from a chromeos::BluetoothDeviceInterface.
void BluetoothDeviceToApiDevice(
- const chromeos::BluetoothDevice& device,
+ const chromeos::BluetoothDeviceInterface& device,
Device* out);
// The caller takes ownership of the returned pointer.
-base::Value* BluetoothDeviceToValue(const chromeos::BluetoothDevice& device);
+base::Value* BluetoothDeviceToValue(
+ const chromeos::BluetoothDeviceInterface& device);
} // namespace experimental_bluetooth
} // namespace api

Powered by Google App Engine
This is Rietveld 408576698