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

Unified Diff: extensions/browser/api/bluetooth/bluetooth_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/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"; }

Powered by Google App Engine
This is Rietveld 408576698