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 21c25c7d782b32fbe690609c9979bb64143a6c48..f817adbc7a0808838ea622e919244245388b69d4 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 |
@@ -219,6 +219,15 @@ class BluetoothLowEnergyReadDescriptorValueFunction |
// BluetoothLowEnergyExtensionFunction override. |
virtual bool DoWork() OVERRIDE; |
+ |
+ private: |
+ // Success and error callbacks, called by |
+ // BluetoothLowEnergyEventRouter::ReadDescriptorValue. |
+ void SuccessCallback(); |
+ void ErrorCallback(); |
+ |
+ // The instance ID of the requested descriptor. |
+ std::string instance_id_; |
}; |
class BluetoothLowEnergyWriteDescriptorValueFunction |