Index: extensions/browser/api/bluetooth_low_energy/bluetooth_low_energy_event_router.h |
diff --git a/extensions/browser/api/bluetooth_low_energy/bluetooth_low_energy_event_router.h b/extensions/browser/api/bluetooth_low_energy/bluetooth_low_energy_event_router.h |
index cf66fb3deb490314ec44043d9695f2d28a01d80c..9e8b4dd7acdd86a707eabce31242c16681c5234a 100644 |
--- a/extensions/browser/api/bluetooth_low_energy/bluetooth_low_energy_event_router.h |
+++ b/extensions/browser/api/bluetooth_low_energy/bluetooth_low_energy_event_router.h |
@@ -230,37 +230,37 @@ class BluetoothLowEnergyEventRouter |
// device::BluetoothAdapter::Observer overrides. |
virtual void GattServiceAdded(device::BluetoothAdapter* adapter, |
device::BluetoothDevice* device, |
- device::BluetoothGattService* service) OVERRIDE; |
+ device::BluetoothGattService* service) override; |
virtual void GattServiceRemoved( |
device::BluetoothAdapter* adapter, |
device::BluetoothDevice* device, |
- device::BluetoothGattService* service) OVERRIDE; |
+ device::BluetoothGattService* service) override; |
virtual void GattDiscoveryCompleteForService( |
device::BluetoothAdapter* adapter, |
- device::BluetoothGattService* service) OVERRIDE; |
+ device::BluetoothGattService* service) override; |
virtual void GattServiceChanged( |
device::BluetoothAdapter* adapter, |
- device::BluetoothGattService* service) OVERRIDE; |
+ device::BluetoothGattService* service) override; |
virtual void GattCharacteristicAdded( |
device::BluetoothAdapter* adapter, |
- device::BluetoothGattCharacteristic* characteristic) OVERRIDE; |
+ device::BluetoothGattCharacteristic* characteristic) override; |
virtual void GattCharacteristicRemoved( |
device::BluetoothAdapter* adapter, |
- device::BluetoothGattCharacteristic* characteristic) OVERRIDE; |
+ device::BluetoothGattCharacteristic* characteristic) override; |
virtual void GattDescriptorAdded( |
device::BluetoothAdapter* adapter, |
- device::BluetoothGattDescriptor* descriptor) OVERRIDE; |
+ device::BluetoothGattDescriptor* descriptor) override; |
virtual void GattDescriptorRemoved( |
device::BluetoothAdapter* adapter, |
- device::BluetoothGattDescriptor* descriptor) OVERRIDE; |
+ device::BluetoothGattDescriptor* descriptor) override; |
virtual void GattCharacteristicValueChanged( |
device::BluetoothAdapter* adapter, |
device::BluetoothGattCharacteristic* characteristic, |
- const std::vector<uint8>& value) OVERRIDE; |
+ const std::vector<uint8>& value) override; |
virtual void GattDescriptorValueChanged( |
device::BluetoothAdapter* adapter, |
device::BluetoothGattDescriptor* descriptor, |
- const std::vector<uint8>& value) OVERRIDE; |
+ const std::vector<uint8>& value) override; |
private: |
// Called by BluetoothAdapterFactory. |