| Index: device/bluetooth/bluetooth_remote_gatt_descriptor_chromeos.h
|
| diff --git a/device/bluetooth/bluetooth_remote_gatt_descriptor_chromeos.h b/device/bluetooth/bluetooth_remote_gatt_descriptor_chromeos.h
|
| index d4ea1e68217a6a25d69b636b1cab334d29f573d4..f4a2a11777f9cac7bb0d4bc4d495b1b11ed1cf07 100644
|
| --- a/device/bluetooth/bluetooth_remote_gatt_descriptor_chromeos.h
|
| +++ b/device/bluetooth/bluetooth_remote_gatt_descriptor_chromeos.h
|
| @@ -30,21 +30,21 @@ class BluetoothRemoteGattDescriptorChromeOS
|
| : public device::BluetoothGattDescriptor {
|
| public:
|
| // device::BluetoothGattDescriptor overrides.
|
| - virtual std::string GetIdentifier() const OVERRIDE;
|
| - virtual device::BluetoothUUID GetUUID() const OVERRIDE;
|
| - virtual bool IsLocal() const OVERRIDE;
|
| - virtual const std::vector<uint8>& GetValue() const OVERRIDE;
|
| + virtual std::string GetIdentifier() const override;
|
| + virtual device::BluetoothUUID GetUUID() const override;
|
| + virtual bool IsLocal() const override;
|
| + virtual const std::vector<uint8>& GetValue() const override;
|
| virtual device::BluetoothGattCharacteristic*
|
| - GetCharacteristic() const OVERRIDE;
|
| + GetCharacteristic() const override;
|
| virtual device::BluetoothGattCharacteristic::Permissions
|
| - GetPermissions() const OVERRIDE;
|
| + GetPermissions() const override;
|
| virtual void ReadRemoteDescriptor(
|
| const ValueCallback& callback,
|
| - const ErrorCallback& error_callback) OVERRIDE;
|
| + const ErrorCallback& error_callback) override;
|
| virtual void WriteRemoteDescriptor(
|
| const std::vector<uint8>& new_value,
|
| const base::Closure& callback,
|
| - const ErrorCallback& error_callback) OVERRIDE;
|
| + const ErrorCallback& error_callback) override;
|
|
|
| // Object path of the underlying D-Bus characteristic.
|
| const dbus::ObjectPath& object_path() const { return object_path_; }
|
|
|