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

Unified Diff: chrome/browser/extensions/api/bluetooth/bluetooth_api.cc

Issue 10228006: Extensions: Add missing SendResponse to API call. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 c57289ac523dbbe99d6646bc4fc120e4c046c27e..3bb283966a60a5ab7294dabacab2c19708028d88 100644
--- a/chrome/browser/extensions/api/bluetooth/bluetooth_api.cc
+++ b/chrome/browser/extensions/api/bluetooth/bluetooth_api.cc
@@ -128,9 +128,10 @@ bool BluetoothGetDevicesWithServiceNameFunction::RunImpl() {
callbacks_pending_++;
}
- if (callbacks_pending_) {
+ if (callbacks_pending_)
AddRef(); // Released in AddDeviceIfTrue when callbacks_pending_ == 0
- }
+ else
+ SendResponse(true);
return true;
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698