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

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: owners Created 4 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
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 e1028cb53c541ba06f948338392da61d3f1cf2ad..8a132d498e55ca91da4a86e1c69060d6394a50eb 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
@@ -126,7 +126,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