| Index: chrome/browser/extensions/api/bluetooth_socket/bluetooth_socket_api.cc
|
| diff --git a/chrome/browser/extensions/api/bluetooth_socket/bluetooth_socket_api.cc b/chrome/browser/extensions/api/bluetooth_socket/bluetooth_socket_api.cc
|
| index 9ecdca51c6dcd2f5c59175f4d0a593c58b696140..1177a72133bf900d769715c321568584c1e2102a 100644
|
| --- a/chrome/browser/extensions/api/bluetooth_socket/bluetooth_socket_api.cc
|
| +++ b/chrome/browser/extensions/api/bluetooth_socket/bluetooth_socket_api.cc
|
| @@ -7,73 +7,73 @@
|
| namespace extensions {
|
| namespace api {
|
|
|
| -bool BluetoothSocketCreateFunction::RunImpl() {
|
| +bool BluetoothSocketCreateFunction::RunAsync() {
|
| // TODO(keybuk): Implement.
|
| SetError("Not yet implemented.");
|
| return false;
|
| }
|
|
|
| -bool BluetoothSocketUpdateFunction::RunImpl() {
|
| +bool BluetoothSocketUpdateFunction::RunAsync() {
|
| // TODO(keybuk): Implement.
|
| SetError("Not yet implemented.");
|
| return false;
|
| }
|
|
|
| -bool BluetoothSocketSetPausedFunction::RunImpl() {
|
| +bool BluetoothSocketSetPausedFunction::RunAsync() {
|
| // TODO(keybuk): Implement.
|
| SetError("Not yet implemented.");
|
| return false;
|
| }
|
|
|
| -bool BluetoothSocketListenUsingRfcommFunction::RunImpl() {
|
| +bool BluetoothSocketListenUsingRfcommFunction::RunAsync() {
|
| // TODO(keybuk): Implement.
|
| SetError("Not yet implemented.");
|
| return false;
|
| }
|
|
|
| -bool BluetoothSocketListenUsingInsecureRfcommFunction::RunImpl() {
|
| +bool BluetoothSocketListenUsingInsecureRfcommFunction::RunAsync() {
|
| // TODO(keybuk): Implement.
|
| SetError("Not yet implemented.");
|
| return false;
|
| }
|
|
|
| -bool BluetoothSocketListenUsingL2capFunction::RunImpl() {
|
| +bool BluetoothSocketListenUsingL2capFunction::RunAsync() {
|
| // TODO(keybuk): Implement.
|
| SetError("Not yet implemented.");
|
| return false;
|
| }
|
|
|
| -bool BluetoothSocketConnectFunction::RunImpl() {
|
| +bool BluetoothSocketConnectFunction::RunAsync() {
|
| // TODO(keybuk): Implement.
|
| SetError("Not yet implemented.");
|
| return false;
|
| }
|
|
|
| -bool BluetoothSocketDisconnectFunction::RunImpl() {
|
| +bool BluetoothSocketDisconnectFunction::RunAsync() {
|
| // TODO(keybuk): Implement.
|
| SetError("Not yet implemented.");
|
| return false;
|
| }
|
|
|
| -bool BluetoothSocketCloseFunction::RunImpl() {
|
| +bool BluetoothSocketCloseFunction::RunAsync() {
|
| // TODO(keybuk): Implement.
|
| SetError("Not yet implemented.");
|
| return false;
|
| }
|
|
|
| -bool BluetoothSocketSendFunction::RunImpl() {
|
| +bool BluetoothSocketSendFunction::RunAsync() {
|
| // TODO(keybuk): Implement.
|
| SetError("Not yet implemented.");
|
| return false;
|
| }
|
|
|
| -bool BluetoothSocketGetInfoFunction::RunImpl() {
|
| +bool BluetoothSocketGetInfoFunction::RunAsync() {
|
| // TODO(keybuk): Implement.
|
| SetError("Not yet implemented.");
|
| return false;
|
| }
|
|
|
| -bool BluetoothSocketGetSocketsFunction::RunImpl() {
|
| +bool BluetoothSocketGetSocketsFunction::RunAsync() {
|
| // TODO(keybuk): Implement.
|
| SetError("Not yet implemented.");
|
| return false;
|
|
|