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

Unified Diff: device/bluetooth/bluetooth_socket_chromeos.h

Issue 278663002: Implement chrome.bluetoothSocket.listenUsing*() (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix BluetoothAdapterMac include typo Created 6 years, 7 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: device/bluetooth/bluetooth_socket_chromeos.h
diff --git a/device/bluetooth/bluetooth_socket_chromeos.h b/device/bluetooth/bluetooth_socket_chromeos.h
index 8301d5c62df3d4a17c9a17ca74ad681c763dcdbc..b8030e83b31e98de7733011162730db75321b2fd 100644
--- a/device/bluetooth/bluetooth_socket_chromeos.h
+++ b/device/bluetooth/bluetooth_socket_chromeos.h
@@ -8,12 +8,12 @@
#include "chromeos/chromeos_export.h"
#include "device/bluetooth/bluetooth_socket.h"
#include "device/bluetooth/bluetooth_socket_net.h"
+#include "device/bluetooth/bluetooth_uuid.h"
namespace dbus {
class FileDescriptor;
} // namespace dbus
-
namespace chromeos {
// The BluetoothSocketChromeOS class implements BluetoothSocket for the
@@ -31,6 +31,10 @@ class CHROMEOS_EXPORT BluetoothSocketChromeOS
const base::Closure& success_callback,
const ErrorCompletionCallback& error_callback);
+ // BluetoothSocket:
+ virtual void Accept(const AcceptCompletionCallback& success_callback,
+ const ErrorCompletionCallback& error_callback) OVERRIDE;
+
protected:
virtual ~BluetoothSocketChromeOS();
@@ -45,7 +49,6 @@ class CHROMEOS_EXPORT BluetoothSocketChromeOS
const base::Closure& success_callback,
const ErrorCompletionCallback& error_callback);
-
DISALLOW_COPY_AND_ASSIGN(BluetoothSocketChromeOS);
};

Powered by Google App Engine
This is Rietveld 408576698