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

Unified Diff: components/proximity_auth/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_unittest.cc ('k') | components/query_parser/query_parser.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/proximity_auth/connection_unittest.cc
diff --git a/components/proximity_auth/connection_unittest.cc b/components/proximity_auth/connection_unittest.cc
index 5df73c7f4a4bb6239e3ed1425475804947201d88..e3c335f8124024f67189f0699f98f4221058862a 100644
--- a/components/proximity_auth/connection_unittest.cc
+++ b/components/proximity_auth/connection_unittest.cc
@@ -35,12 +35,12 @@ class MockConnection : public Connection {
// Gmock only supports copyable types, so create simple wrapper methods for
// ease of mocking.
- virtual void SendMessageImpl(scoped_ptr<WireMessage> message) OVERRIDE {
+ virtual void SendMessageImpl(scoped_ptr<WireMessage> message) override {
SendMessageImplProxy(message.get());
}
virtual scoped_ptr<WireMessage> DeserializeWireMessage(
- bool* is_incomplete_message) OVERRIDE {
+ bool* is_incomplete_message) override {
return make_scoped_ptr(DeserializeWireMessageProxy(is_incomplete_message));
}
« no previous file with comments | « components/proximity_auth/bluetooth_connection_unittest.cc ('k') | components/query_parser/query_parser.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698