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

Unified Diff: extensions/browser/api/bluetooth/bluetooth_api_pairing_delegate.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_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 e99926429120183110fe43a13e258b6f1b196e45..b3dc301828b0a5575b44a8784be6aae15f93cf19 100644
--- a/extensions/browser/api/bluetooth/bluetooth_api_pairing_delegate.h
+++ b/extensions/browser/api/bluetooth/bluetooth_api_pairing_delegate.h
@@ -26,17 +26,17 @@ class BluetoothApiPairingDelegate
virtual ~BluetoothApiPairingDelegate();
// device::PairingDelegate overrides:
- virtual void RequestPinCode(device::BluetoothDevice* device) OVERRIDE;
- virtual void RequestPasskey(device::BluetoothDevice* device) OVERRIDE;
+ 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;
+ const std::string& pincode) override;
virtual void DisplayPasskey(device::BluetoothDevice* device,
- uint32 passkey) OVERRIDE;
+ uint32 passkey) override;
virtual void KeysEntered(device::BluetoothDevice* device,
- uint32 entered) OVERRIDE;
+ uint32 entered) override;
virtual void ConfirmPasskey(device::BluetoothDevice* device,
- uint32 passkey) OVERRIDE;
- virtual void AuthorizePairing(device::BluetoothDevice* device) OVERRIDE;
+ uint32 passkey) override;
+ virtual 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