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

Unified Diff: extensions/browser/api/bluetooth/bluetooth_private_api.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_private_api.h
diff --git a/extensions/browser/api/bluetooth/bluetooth_private_api.h b/extensions/browser/api/bluetooth/bluetooth_private_api.h
index 05208618c211bd70e7ee03f412c4423f670c6fd2..02d9e7dd74243d5f7ede88507cfb30a62b7f069e 100644
--- a/extensions/browser/api/bluetooth/bluetooth_private_api.h
+++ b/extensions/browser/api/bluetooth/bluetooth_private_api.h
@@ -29,11 +29,11 @@ class BluetoothPrivateAPI : public BrowserContextKeyedAPI,
virtual ~BluetoothPrivateAPI();
// KeyedService implementation.
- virtual void Shutdown() OVERRIDE;
+ virtual void Shutdown() override;
// EventRouter::Observer implementation.
- virtual void OnListenerAdded(const EventListenerInfo& details) OVERRIDE;
- virtual void OnListenerRemoved(const EventListenerInfo& details) OVERRIDE;
+ virtual void OnListenerAdded(const EventListenerInfo& details) override;
+ virtual void OnListenerRemoved(const EventListenerInfo& details) override;
// BrowserContextKeyedAPI implementation.
static const char* service_name() { return "BluetoothPrivateAPI"; }
@@ -65,7 +65,7 @@ class BluetoothPrivateSetAdapterStateFunction
void SendError();
// BluetoothExtensionFunction overrides:
- virtual bool DoWork(scoped_refptr<device::BluetoothAdapter> adapter) OVERRIDE;
+ virtual bool DoWork(scoped_refptr<device::BluetoothAdapter> adapter) override;
// Set of expected adapter properties to be changed.
std::set<std::string> pending_properties_;
@@ -83,7 +83,7 @@ class BluetoothPrivateSetPairingResponseFunction
BLUETOOTHPRIVATE_SETPAIRINGRESPONSE)
BluetoothPrivateSetPairingResponseFunction();
// BluetoothExtensionFunction overrides:
- virtual bool DoWork(scoped_refptr<device::BluetoothAdapter> adapter) OVERRIDE;
+ virtual bool DoWork(scoped_refptr<device::BluetoothAdapter> adapter) override;
private:
virtual ~BluetoothPrivateSetPairingResponseFunction();

Powered by Google App Engine
This is Rietveld 408576698