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

Unified Diff: extensions/browser/api/cast_channel/cast_transport_unittest.cc

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/cast_channel/cast_transport_unittest.cc
diff --git a/extensions/browser/api/cast_channel/cast_transport_unittest.cc b/extensions/browser/api/cast_channel/cast_transport_unittest.cc
index 7ea4f36a0b3b8c84606ac7f77fcd14c31acdfc55..d66795e23937ba4ddae2da2155ace5e52590f313 100644
--- a/extensions/browser/api/cast_channel/cast_transport_unittest.cc
+++ b/extensions/browser/api/cast_channel/cast_transport_unittest.cc
@@ -145,14 +145,14 @@ class MockCastSocket : public CastSocketInterface {
virtual ~MockCastSocket() {}
// The IP endpoint for the destination of the channel.
- virtual const net::IPEndPoint& ip_endpoint() const OVERRIDE { return ip_; }
+ virtual const net::IPEndPoint& ip_endpoint() const override { return ip_; }
// The authentication level requested for the channel.
- virtual ChannelAuthType channel_auth() const OVERRIDE {
+ virtual ChannelAuthType channel_auth() const override {
return CHANNEL_AUTH_TYPE_SSL_VERIFIED;
}
- virtual int id() const OVERRIDE { return 1; }
+ virtual int id() const override { return 1; }
MOCK_METHOD3(Write,
int(net::IOBuffer* buffer,
« no previous file with comments | « extensions/browser/api/cast_channel/cast_socket_unittest.cc ('k') | extensions/browser/api/declarative/declarative_api.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698