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

Unified Diff: components/proximity_auth/bluetooth_connection_unittest.cc

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
« no previous file with comments | « components/proximity_auth/bluetooth_connection_finder.h ('k') | components/proximity_auth/client.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/proximity_auth/bluetooth_connection_unittest.cc
diff --git a/components/proximity_auth/bluetooth_connection_unittest.cc b/components/proximity_auth/bluetooth_connection_unittest.cc
index 14765335d5a933bcf207f5ff3258190728994e4d..a30d08c5e800573de5e1f1d51c0315282d3ab559 100644
--- a/components/proximity_auth/bluetooth_connection_unittest.cc
+++ b/components/proximity_auth/bluetooth_connection_unittest.cc
@@ -80,9 +80,9 @@ class MockBluetoothConnection : public BluetoothConnection {
class TestWireMessage : public WireMessage {
public:
TestWireMessage() : WireMessage("permit id", "payload") {}
- virtual ~TestWireMessage() {}
+ ~TestWireMessage() override {}
- virtual std::string Serialize() const override { return kSerializedMessage; }
+ std::string Serialize() const override { return kSerializedMessage; }
private:
DISALLOW_COPY_AND_ASSIGN(TestWireMessage);
« no previous file with comments | « components/proximity_auth/bluetooth_connection_finder.h ('k') | components/proximity_auth/client.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698