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

Unified Diff: extensions/browser/api/bluetooth/bluetooth_api_pairing_delegate.h

Issue 664933004: Standardize usage of virtual/override/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_pairing_delegate.h
diff --git a/extensions/browser/api/bluetooth/bluetooth_api_pairing_delegate.h b/extensions/browser/api/bluetooth/bluetooth_api_pairing_delegate.h
index b3dc301828b0a5575b44a8784be6aae15f93cf19..bfcbc81948127855cb558ca581e936c9b3eb181d 100644
--- a/extensions/browser/api/bluetooth/bluetooth_api_pairing_delegate.h
+++ b/extensions/browser/api/bluetooth/bluetooth_api_pairing_delegate.h
@@ -23,20 +23,17 @@ class BluetoothApiPairingDelegate
public:
BluetoothApiPairingDelegate(const std::string& extension_id,
content::BrowserContext* browser_context);
- virtual ~BluetoothApiPairingDelegate();
+ ~BluetoothApiPairingDelegate() override;
// device::PairingDelegate overrides:
- virtual void RequestPinCode(device::BluetoothDevice* device) override;
- virtual void RequestPasskey(device::BluetoothDevice* device) override;
- virtual void DisplayPinCode(device::BluetoothDevice* device,
- const std::string& pincode) override;
- virtual void DisplayPasskey(device::BluetoothDevice* device,
- uint32 passkey) override;
- virtual void KeysEntered(device::BluetoothDevice* device,
- uint32 entered) override;
- virtual void ConfirmPasskey(device::BluetoothDevice* device,
- uint32 passkey) override;
- virtual void AuthorizePairing(device::BluetoothDevice* device) override;
+ void RequestPinCode(device::BluetoothDevice* device) override;
+ void RequestPasskey(device::BluetoothDevice* device) override;
+ void DisplayPinCode(device::BluetoothDevice* device,
+ const std::string& pincode) override;
+ void DisplayPasskey(device::BluetoothDevice* device, uint32 passkey) override;
+ void KeysEntered(device::BluetoothDevice* device, uint32 entered) override;
+ void ConfirmPasskey(device::BluetoothDevice* device, uint32 passkey) override;
+ void AuthorizePairing(device::BluetoothDevice* device) override;
private:
// Dispatches a pairing event to the extension.
« no previous file with comments | « extensions/browser/api/bluetooth/bluetooth_api.h ('k') | extensions/browser/api/bluetooth/bluetooth_apitest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698