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

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

Issue 10777003: Refactor APIResourceController to ProfileKeyedService. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Merge/antony/fix build. Created 8 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_api.h
diff --git a/chrome/browser/extensions/api/bluetooth/bluetooth_api.h b/chrome/browser/extensions/api/bluetooth/bluetooth_api.h
index 242d95001bd6b193db2d18988a9397061e201553..a7abe404fa35543fb65c1271fc6b5607f437e05d 100644
--- a/chrome/browser/extensions/api/bluetooth/bluetooth_api.h
+++ b/chrome/browser/extensions/api/bluetooth/bluetooth_api.h
@@ -131,7 +131,7 @@ class BluetoothDisconnectFunction : public SyncExtensionFunction {
virtual bool RunImpl() OVERRIDE;
};
-class BluetoothReadFunction : public AsyncAPIFunction {
+class BluetoothReadFunction : public AsyncApiFunction {
public:
DECLARE_EXTENSION_FUNCTION_NAME("experimental.bluetooth.read")
BluetoothReadFunction();
@@ -139,7 +139,7 @@ class BluetoothReadFunction : public AsyncAPIFunction {
protected:
virtual ~BluetoothReadFunction();
- // AsyncAPIFunction:
+ // AsyncApiFunction:
virtual bool Prepare() OVERRIDE;
virtual bool Respond() OVERRIDE;
virtual void Work() OVERRIDE;
@@ -151,7 +151,7 @@ class BluetoothReadFunction : public AsyncAPIFunction {
#endif
};
-class BluetoothWriteFunction : public AsyncAPIFunction {
+class BluetoothWriteFunction : public AsyncApiFunction {
public:
DECLARE_EXTENSION_FUNCTION_NAME("experimental.bluetooth.write")
BluetoothWriteFunction();
@@ -159,7 +159,7 @@ class BluetoothWriteFunction : public AsyncAPIFunction {
protected:
virtual ~BluetoothWriteFunction();
- // AsyncAPIFunction:
+ // AsyncApiFunction:
virtual bool Prepare() OVERRIDE;
virtual bool Respond() OVERRIDE;
virtual void Work() OVERRIDE;
« no previous file with comments | « chrome/browser/extensions/api/api_resource_manager.h ('k') | chrome/browser/extensions/api/serial/serial_api.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698