Index: chrome/browser/extensions/api/bluetooth/bluetooth_api.cc |
diff --git a/chrome/browser/extensions/api/bluetooth/bluetooth_api.cc b/chrome/browser/extensions/api/bluetooth/bluetooth_api.cc |
index 52c631ed1901215888107994b1ebde7c3431721a..f1f0cd8383f08778c6927879fb8d52dc42f9b0c7 100644 |
--- a/chrome/browser/extensions/api/bluetooth/bluetooth_api.cc |
+++ b/chrome/browser/extensions/api/bluetooth/bluetooth_api.cc |
@@ -300,7 +300,7 @@ BluetoothSocketApiFunction::BluetoothSocketApiFunction() {} |
BluetoothSocketApiFunction::~BluetoothSocketApiFunction() {} |
-bool BluetoothSocketApiFunction::RunImpl() { |
+bool BluetoothSocketApiFunction::RunAsync() { |
if (!PrePrepare() || !Prepare()) { |
return false; |
} |
@@ -394,7 +394,7 @@ BluetoothAddProfileFunction::BluetoothAddProfileFunction() {} |
BluetoothAddProfileFunction::~BluetoothAddProfileFunction() {} |
-bool BluetoothAddProfileFunction::RunImpl() { |
+bool BluetoothAddProfileFunction::RunAsync() { |
DCHECK(content::BrowserThread::CurrentlyOn(content::BrowserThread::UI)); |
scoped_ptr<AddProfile::Params> params(AddProfile::Params::Create(*args_)); |
EXTENSION_FUNCTION_VALIDATE(params.get() != NULL); |