Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(9)

Unified Diff: extensions/browser/api/bluetooth_low_energy/bluetooth_low_energy_event_router.h

Issue 622343002: replace OVERRIDE and FINAL with override and final in extensions/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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.

Powered by Google App Engine
This is Rietveld 408576698