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

Unified Diff: extensions/browser/api/bluetooth/bluetooth_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_api.h
diff --git a/extensions/browser/api/bluetooth/bluetooth_api.h b/extensions/browser/api/bluetooth/bluetooth_api.h
index b395eb59bafb069ceedbaa35f704f604ce65a879..ece5521d13c612d071c781be39eba3f438b6c063 100644
--- a/extensions/browser/api/bluetooth/bluetooth_api.h
+++ b/extensions/browser/api/bluetooth/bluetooth_api.h
@@ -45,11 +45,11 @@ class BluetoothAPI : public BrowserContextKeyedAPI,
BluetoothEventRouter* event_router();
// 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;
private:
// BrowserContextKeyedAPI implementation.
@@ -75,7 +75,7 @@ class BluetoothGetAdapterStateFunction : public BluetoothExtensionFunction {
virtual ~BluetoothGetAdapterStateFunction();
// BluetoothExtensionFunction:
- virtual bool DoWork(scoped_refptr<device::BluetoothAdapter> adapter) OVERRIDE;
+ virtual bool DoWork(scoped_refptr<device::BluetoothAdapter> adapter) override;
};
class BluetoothGetDevicesFunction : public BluetoothExtensionFunction {
@@ -86,7 +86,7 @@ class BluetoothGetDevicesFunction : public BluetoothExtensionFunction {
virtual ~BluetoothGetDevicesFunction();
// BluetoothExtensionFunction:
- virtual bool DoWork(scoped_refptr<device::BluetoothAdapter> adapter) OVERRIDE;
+ virtual bool DoWork(scoped_refptr<device::BluetoothAdapter> adapter) override;
};
class BluetoothGetDeviceFunction : public BluetoothExtensionFunction {
@@ -94,7 +94,7 @@ class BluetoothGetDeviceFunction : public BluetoothExtensionFunction {
DECLARE_EXTENSION_FUNCTION("bluetooth.getDevice", BLUETOOTH_GETDEVICE)
// BluetoothExtensionFunction:
- virtual bool DoWork(scoped_refptr<device::BluetoothAdapter> adapter) OVERRIDE;
+ virtual bool DoWork(scoped_refptr<device::BluetoothAdapter> adapter) override;
protected:
virtual ~BluetoothGetDeviceFunction();
@@ -109,7 +109,7 @@ class BluetoothStartDiscoveryFunction : public BluetoothExtensionFunction {
virtual ~BluetoothStartDiscoveryFunction() {}
// BluetoothExtensionFunction:
- virtual bool DoWork(scoped_refptr<device::BluetoothAdapter> adapter) OVERRIDE;
+ virtual bool DoWork(scoped_refptr<device::BluetoothAdapter> adapter) override;
private:
void OnSuccessCallback();
@@ -124,7 +124,7 @@ class BluetoothStopDiscoveryFunction : public BluetoothExtensionFunction {
virtual ~BluetoothStopDiscoveryFunction() {}
// BluetoothExtensionFunction:
- virtual bool DoWork(scoped_refptr<device::BluetoothAdapter> adapter) OVERRIDE;
+ virtual bool DoWork(scoped_refptr<device::BluetoothAdapter> adapter) override;
private:
void OnSuccessCallback();
« no previous file with comments | « extensions/browser/api/async_api_function.h ('k') | extensions/browser/api/bluetooth/bluetooth_api_pairing_delegate.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698