Index: chrome/browser/extensions/api/bluetooth/bluetooth_api.h |
diff --git a/chrome/browser/extensions/api/bluetooth/bluetooth_api.h b/chrome/browser/extensions/api/bluetooth/bluetooth_api.h |
index ad899126915b57fdd9b644e461cd253cdc3ca26a..58122a7e2de1f7b687a982e10157fc6a02fc8f44 100644 |
--- a/chrome/browser/extensions/api/bluetooth/bluetooth_api.h |
+++ b/chrome/browser/extensions/api/bluetooth/bluetooth_api.h |
@@ -28,7 +28,6 @@ class BrowserContext; |
namespace device { |
class BluetoothAdapter; |
-struct BluetoothOutOfBandPairingData; |
} |
namespace net { |
@@ -256,38 +255,6 @@ class BluetoothGetSocketsFunction : public AsyncExtensionFunction { |
virtual bool RunAsync() OVERRIDE; |
}; |
-class BluetoothGetLocalOutOfBandPairingDataFunction |
- : public BluetoothExtensionFunction { |
- public: |
- DECLARE_EXTENSION_FUNCTION("bluetooth.getLocalOutOfBandPairingData", |
- BLUETOOTH_GETLOCALOUTOFBANDPAIRINGDATA) |
- |
- protected: |
- virtual ~BluetoothGetLocalOutOfBandPairingDataFunction() {} |
- |
- void ReadCallback(const device::BluetoothOutOfBandPairingData& data); |
- void ErrorCallback(); |
- |
- // BluetoothExtensionFunction: |
- virtual bool DoWork(scoped_refptr<device::BluetoothAdapter> adapter) OVERRIDE; |
-}; |
- |
-class BluetoothSetOutOfBandPairingDataFunction |
- : public BluetoothExtensionFunction { |
- public: |
- DECLARE_EXTENSION_FUNCTION("bluetooth.setOutOfBandPairingData", |
- BLUETOOTH_SETOUTOFBANDPAIRINGDATA) |
- |
- protected: |
- virtual ~BluetoothSetOutOfBandPairingDataFunction() {} |
- |
- void OnSuccessCallback(); |
- void OnErrorCallback(); |
- |
- // BluetoothExtensionFunction: |
- virtual bool DoWork(scoped_refptr<device::BluetoothAdapter> adapter) OVERRIDE; |
-}; |
- |
class BluetoothStartDiscoveryFunction : public BluetoothExtensionFunction { |
public: |
DECLARE_EXTENSION_FUNCTION("bluetooth.startDiscovery", |