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 a1a3d6b7d9594234401326d974413f9553e30db8..21c25c7d782b32fbe690609c9979bb64143a6c48 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 |
@@ -197,6 +197,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 |