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 59f1428a4b6117db14e6f6fe2695e33c4487c1b7..85553d32d11cc09ec9e6d1a7d5e8942eb75a0d7c 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 |
@@ -188,6 +188,15 @@ class BluetoothLowEnergyWriteCharacteristicValueFunction |
// BluetoothLowEnergyExtensionFunction override. |
virtual bool DoWork() OVERRIDE; |
+ |
+ private: |
+ // Success and error callbacks, called by |
+ // BluetoothLowEnergyEventRouter::WriteCharacteristicValue. |
+ void SuccessCallback(); |
+ void ErrorCallback(); |
+ |
+ // The instance ID of the requested characteristic. |
+ std::string instance_id_; |
}; |
class BluetoothLowEnergyReadDescriptorValueFunction |