| 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 0fd43f51ab0906f76c7726ab4c369433fa31eb8c..9894e40daf9f007cd6fdb3f127a6f37bccc88fd3 100644
|
| --- a/chrome/browser/extensions/api/bluetooth_socket/bluetooth_socket_api.cc
|
| +++ b/chrome/browser/extensions/api/bluetooth_socket/bluetooth_socket_api.cc
|
| @@ -68,7 +68,7 @@ BluetoothSocketAsyncApiFunction::BluetoothSocketAsyncApiFunction() {}
|
|
|
| BluetoothSocketAsyncApiFunction::~BluetoothSocketAsyncApiFunction() {}
|
|
|
| -bool BluetoothSocketAsyncApiFunction::RunImpl() {
|
| +bool BluetoothSocketAsyncApiFunction::RunAsync() {
|
| if (!PrePrepare() || !Prepare()) {
|
| return false;
|
| }
|
| @@ -208,25 +208,25 @@ void BluetoothSocketSetPausedFunction::Work() {
|
| results_ = bluetooth_socket::SetPaused::Results::Create();
|
| }
|
|
|
| -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;
|
|
|