| 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();
|
|
|