Index: extensions/browser/api/bluetooth/bluetooth_event_router.h |
diff --git a/extensions/browser/api/bluetooth/bluetooth_event_router.h b/extensions/browser/api/bluetooth/bluetooth_event_router.h |
index e0fdf9a801c2819e978b514f210b2fd9554bc64f..4c5184929cc63d5bcd09291ba7b9f8d9afbe97bf 100644 |
--- a/extensions/browser/api/bluetooth/bluetooth_event_router.h |
+++ b/extensions/browser/api/bluetooth/bluetooth_event_router.h |
@@ -92,28 +92,28 @@ class BluetoothEventRouter : public device::BluetoothAdapter::Observer, |
// Override from device::BluetoothAdapter::Observer. |
virtual void AdapterPresentChanged(device::BluetoothAdapter* adapter, |
- bool present) OVERRIDE; |
+ bool present) override; |
virtual void AdapterPoweredChanged(device::BluetoothAdapter* adapter, |
- bool has_power) OVERRIDE; |
+ bool has_power) override; |
virtual void AdapterDiscoveringChanged(device::BluetoothAdapter* adapter, |
- bool discovering) OVERRIDE; |
+ bool discovering) override; |
virtual void DeviceAdded(device::BluetoothAdapter* adapter, |
- device::BluetoothDevice* device) OVERRIDE; |
+ device::BluetoothDevice* device) override; |
virtual void DeviceChanged(device::BluetoothAdapter* adapter, |
- device::BluetoothDevice* device) OVERRIDE; |
+ device::BluetoothDevice* device) override; |
virtual void DeviceRemoved(device::BluetoothAdapter* adapter, |
- device::BluetoothDevice* device) OVERRIDE; |
+ device::BluetoothDevice* device) override; |
// Overridden from content::NotificationObserver. |
virtual void Observe(int type, |
const content::NotificationSource& source, |
- const content::NotificationDetails& details) OVERRIDE; |
+ const content::NotificationDetails& details) override; |
// Overridden from ExtensionRegistryObserver. |
virtual void OnExtensionUnloaded( |
content::BrowserContext* browser_context, |
const Extension* extension, |
- UnloadedExtensionInfo::Reason reason) OVERRIDE; |
+ UnloadedExtensionInfo::Reason reason) override; |
// BrowserContextKeyedAPI implementation. |
static const char* service_name() { return "BluetoothEventRouter"; } |