| 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 0d26080669e709e7f1d51e70a2da4f832f88b435..fdb098fea39bc9c7e79d28e44590f155bf6a0504 100644
|
| --- a/chrome/browser/extensions/api/bluetooth/bluetooth_api.h
|
| +++ b/chrome/browser/extensions/api/bluetooth/bluetooth_api.h
|
| @@ -75,7 +75,7 @@ class BluetoothGetAdapterStateFunction : public BluetoothExtensionFunction {
|
| virtual ~BluetoothGetAdapterStateFunction();
|
|
|
| // BluetoothExtensionFunction:
|
| - virtual bool DoWork(scoped_refptr<device::BluetoothAdapter> adapter) OVERRIDE;
|
| + virtual void DoWork(scoped_refptr<device::BluetoothAdapter> adapter) OVERRIDE;
|
| };
|
|
|
| class BluetoothGetDevicesFunction : public BluetoothExtensionFunction {
|
| @@ -86,7 +86,7 @@ class BluetoothGetDevicesFunction : public BluetoothExtensionFunction {
|
| virtual ~BluetoothGetDevicesFunction();
|
|
|
| // BluetoothExtensionFunction:
|
| - virtual bool DoWork(scoped_refptr<device::BluetoothAdapter> adapter) OVERRIDE;
|
| + virtual void DoWork(scoped_refptr<device::BluetoothAdapter> adapter) OVERRIDE;
|
| };
|
|
|
| class BluetoothGetDeviceFunction : public BluetoothExtensionFunction {
|
| @@ -94,7 +94,7 @@ class BluetoothGetDeviceFunction : public BluetoothExtensionFunction {
|
| DECLARE_EXTENSION_FUNCTION("bluetooth.getDevice", BLUETOOTH_GETDEVICE)
|
|
|
| // BluetoothExtensionFunction:
|
| - virtual bool DoWork(scoped_refptr<device::BluetoothAdapter> adapter) OVERRIDE;
|
| + virtual void DoWork(scoped_refptr<device::BluetoothAdapter> adapter) OVERRIDE;
|
|
|
| protected:
|
| virtual ~BluetoothGetDeviceFunction();
|
| @@ -109,7 +109,7 @@ class BluetoothStartDiscoveryFunction : public BluetoothExtensionFunction {
|
| virtual ~BluetoothStartDiscoveryFunction() {}
|
|
|
| // BluetoothExtensionFunction:
|
| - virtual bool DoWork(scoped_refptr<device::BluetoothAdapter> adapter) OVERRIDE;
|
| + virtual void DoWork(scoped_refptr<device::BluetoothAdapter> adapter) OVERRIDE;
|
|
|
| private:
|
| void OnSuccessCallback();
|
| @@ -124,7 +124,7 @@ class BluetoothStopDiscoveryFunction : public BluetoothExtensionFunction {
|
| virtual ~BluetoothStopDiscoveryFunction() {}
|
|
|
| // BluetoothExtensionFunction:
|
| - virtual bool DoWork(scoped_refptr<device::BluetoothAdapter> adapter) OVERRIDE;
|
| + virtual void DoWork(scoped_refptr<device::BluetoothAdapter> adapter) OVERRIDE;
|
|
|
| private:
|
| void OnSuccessCallback();
|
|
|