Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1013)

Unified Diff: chrome/browser/extensions/api/bluetooth_socket/bluetooth_socket_api.cc

Issue 257333002: Drive extension functions from ExtensionFunction::Run. The (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: appshell Created 6 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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;

Powered by Google App Engine
This is Rietveld 408576698