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

Unified Diff: chrome/browser/extensions/api/bluetooth_low_energy/bluetooth_low_energy_api.h

Issue 1920353002: Implement create attribute API functions for BTLE. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@api_changes
Patch Set: Created 4 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
Index: chrome/browser/extensions/api/bluetooth_low_energy/bluetooth_low_energy_api.h
diff --git a/chrome/browser/extensions/api/bluetooth_low_energy/bluetooth_low_energy_api.h b/chrome/browser/extensions/api/bluetooth_low_energy/bluetooth_low_energy_api.h
index 6d2233d71d7339a467b395c99d97e615a74fa02d..3a1eb2c380cf90948947b99a39871479d9e0e804 100644
--- a/chrome/browser/extensions/api/bluetooth_low_energy/bluetooth_low_energy_api.h
+++ b/chrome/browser/extensions/api/bluetooth_low_energy/bluetooth_low_energy_api.h
@@ -128,7 +128,12 @@ class BluetoothLowEnergyExtensionFunction : public UIThreadExtensionFunction {
// BluetoothAdapter.
virtual void DoWork() = 0;
+ BluetoothLowEnergyEventRouter* event_router_;
+
private:
+ // Internal method to do common setup before actual DoWork is called.
+ void PreDoWork();
+
DISALLOW_COPY_AND_ASSIGN(BluetoothLowEnergyExtensionFunction);
};

Powered by Google App Engine
This is Rietveld 408576698