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

Unified Diff: components/proximity_auth/bluetooth_connection.h

Issue 666133002: Standardize usage of virtual/override/final in components/ (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: components/proximity_auth/bluetooth_connection.h
diff --git a/components/proximity_auth/bluetooth_connection.h b/components/proximity_auth/bluetooth_connection.h
index ebe4f8dd9b6f0ebd9ca3022660707b9946a68530..affa5b2e1466cb0ca8c8bbbdb5efec7dbd576f43 100644
--- a/components/proximity_auth/bluetooth_connection.h
+++ b/components/proximity_auth/bluetooth_connection.h
@@ -33,17 +33,17 @@ class BluetoothConnection : public Connection,
// Bluetooth daemon.
BluetoothConnection(const RemoteDevice& remote_device,
const device::BluetoothUUID& uuid);
- virtual ~BluetoothConnection();
+ ~BluetoothConnection() override;
protected:
// Connection:
- virtual void Connect() override;
- virtual void Disconnect() override;
- virtual void SendMessageImpl(scoped_ptr<WireMessage> message) override;
+ void Connect() override;
+ void Disconnect() override;
+ void SendMessageImpl(scoped_ptr<WireMessage> message) override;
// BluetoothAdapter::Observer:
- virtual void DeviceRemoved(device::BluetoothAdapter* adapter,
- device::BluetoothDevice* device) override;
+ void DeviceRemoved(device::BluetoothAdapter* adapter,
+ device::BluetoothDevice* device) override;
private:
// Registers receive callbacks with the backing |socket_|.
« no previous file with comments | « components/pref_registry/testing_pref_service_syncable.h ('k') | components/proximity_auth/bluetooth_connection_finder.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698