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

Unified Diff: components/proximity_auth/bluetooth_connection_unittest.cc

Issue 623133002: replace OVERRIDE and FINAL with override and 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.h ('k') | components/proximity_auth/connection_unittest.cc » ('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 bfa99e35eba2d035a28db781cb143845478f2d9d..7eb7a82f9152a8d9ef28eabce45dba137a71a822 100644
--- a/components/proximity_auth/bluetooth_connection_unittest.cc
+++ b/components/proximity_auth/bluetooth_connection_unittest.cc
@@ -74,7 +74,7 @@ class MockBluetoothConnection : public BluetoothConnection {
MOCK_METHOD2(OnDidSendMessage,
void(const WireMessage& message, bool success));
- virtual void SetStatus(Status status) OVERRIDE {
+ virtual void SetStatus(Status status) override {
SetStatusProxy(status);
BluetoothConnection::SetStatus(status);
}
@@ -93,7 +93,7 @@ class TestWireMessage : public WireMessage {
TestWireMessage() : WireMessage("permit id", "payload") {}
virtual ~TestWireMessage() {}
- virtual std::string Serialize() const OVERRIDE { return kSerializedMessage; }
+ virtual std::string Serialize() const override { return kSerializedMessage; }
private:
DISALLOW_COPY_AND_ASSIGN(TestWireMessage);
« no previous file with comments | « components/proximity_auth/bluetooth_connection.h ('k') | components/proximity_auth/connection_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698