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

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

Issue 10388186: RefCounted types should not have public destructors (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 7 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 | chrome/browser/extensions/api/idltest/idltest_api.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/extensions/api/bluetooth/bluetooth_api.h
diff --git a/chrome/browser/extensions/api/bluetooth/bluetooth_api.h b/chrome/browser/extensions/api/bluetooth/bluetooth_api.h
index 27b6750948d6096c91b7ccab44707f080d357cf0..2777c420a47334a17d9547f67f6f6f684ddcf489 100644
--- a/chrome/browser/extensions/api/bluetooth/bluetooth_api.h
+++ b/chrome/browser/extensions/api/bluetooth/bluetooth_api.h
@@ -95,9 +95,13 @@ class BluetoothGetDevicesWithServiceNameFunction
class BluetoothConnectFunction : public AsyncExtensionFunction {
public:
- virtual bool RunImpl() OVERRIDE;
DECLARE_EXTENSION_FUNCTION_NAME("experimental.bluetooth.connect")
+ protected:
+ virtual ~BluetoothConnectFunction() {}
+
+ virtual bool RunImpl() OVERRIDE;
+
private:
#if defined(OS_CHROMEOS)
void ConnectToServiceCallback(
« no previous file with comments | « no previous file | chrome/browser/extensions/api/idltest/idltest_api.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698