| 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 242d95001bd6b193db2d18988a9397061e201553..a7abe404fa35543fb65c1271fc6b5607f437e05d 100644
|
| --- a/chrome/browser/extensions/api/bluetooth/bluetooth_api.h
|
| +++ b/chrome/browser/extensions/api/bluetooth/bluetooth_api.h
|
| @@ -131,7 +131,7 @@ class BluetoothDisconnectFunction : public SyncExtensionFunction {
|
| virtual bool RunImpl() OVERRIDE;
|
| };
|
|
|
| -class BluetoothReadFunction : public AsyncAPIFunction {
|
| +class BluetoothReadFunction : public AsyncApiFunction {
|
| public:
|
| DECLARE_EXTENSION_FUNCTION_NAME("experimental.bluetooth.read")
|
| BluetoothReadFunction();
|
| @@ -139,7 +139,7 @@ class BluetoothReadFunction : public AsyncAPIFunction {
|
| protected:
|
| virtual ~BluetoothReadFunction();
|
|
|
| - // AsyncAPIFunction:
|
| + // AsyncApiFunction:
|
| virtual bool Prepare() OVERRIDE;
|
| virtual bool Respond() OVERRIDE;
|
| virtual void Work() OVERRIDE;
|
| @@ -151,7 +151,7 @@ class BluetoothReadFunction : public AsyncAPIFunction {
|
| #endif
|
| };
|
|
|
| -class BluetoothWriteFunction : public AsyncAPIFunction {
|
| +class BluetoothWriteFunction : public AsyncApiFunction {
|
| public:
|
| DECLARE_EXTENSION_FUNCTION_NAME("experimental.bluetooth.write")
|
| BluetoothWriteFunction();
|
| @@ -159,7 +159,7 @@ class BluetoothWriteFunction : public AsyncAPIFunction {
|
| protected:
|
| virtual ~BluetoothWriteFunction();
|
|
|
| - // AsyncAPIFunction:
|
| + // AsyncApiFunction:
|
| virtual bool Prepare() OVERRIDE;
|
| virtual bool Respond() OVERRIDE;
|
| virtual void Work() OVERRIDE;
|
|
|