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

Unified Diff: chrome/browser/extensions/api/bluetooth/bluetooth_extension_function.h

Issue 400843002: Clean up Bluetooth API implementation. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Remove a trailing return Created 6 years, 5 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/bluetooth_extension_function.h
diff --git a/chrome/browser/extensions/api/bluetooth/bluetooth_extension_function.h b/chrome/browser/extensions/api/bluetooth/bluetooth_extension_function.h
index dfe9ea50491bed024b78ebfbb1fb2914c9c4e7c2..837f4a1bd639f995cb4c99e954013a3cef07d9d8 100644
--- a/chrome/browser/extensions/api/bluetooth/bluetooth_extension_function.h
+++ b/chrome/browser/extensions/api/bluetooth/bluetooth_extension_function.h
@@ -36,7 +36,7 @@ class BluetoothExtensionFunction : public AsyncExtensionFunction {
// Implemented by individual bluetooth extension functions, called
// automatically on the UI thread once |adapter| has been initialized.
- virtual bool DoWork(scoped_refptr<device::BluetoothAdapter> adapter) = 0;
+ virtual void DoWork(scoped_refptr<device::BluetoothAdapter> adapter) = 0;
DISALLOW_COPY_AND_ASSIGN(BluetoothExtensionFunction);
};

Powered by Google App Engine
This is Rietveld 408576698