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

Unified Diff: google_apis/gcm/engine/connection_factory_impl_unittest.cc

Issue 625293003: replace OVERRIDE and FINAL with override and final in google_apis/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: another rebase on master 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 | « google_apis/gcm/engine/connection_factory_impl.h ('k') | google_apis/gcm/engine/connection_handler_impl.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: google_apis/gcm/engine/connection_factory_impl_unittest.cc
diff --git a/google_apis/gcm/engine/connection_factory_impl_unittest.cc b/google_apis/gcm/engine/connection_factory_impl_unittest.cc
index 51958eaab78b703ab7f6b9831ea68411c75ab579..0be24e71adda1e876959d272911ad99132aa8d9b 100644
--- a/google_apis/gcm/engine/connection_factory_impl_unittest.cc
+++ b/google_apis/gcm/engine/connection_factory_impl_unittest.cc
@@ -85,7 +85,7 @@ class TestBackoffEntry : public net::BackoffEntry {
explicit TestBackoffEntry(base::SimpleTestTickClock* tick_clock);
virtual ~TestBackoffEntry();
- virtual base::TimeTicks ImplGetTimeNow() const OVERRIDE;
+ virtual base::TimeTicks ImplGetTimeNow() const override;
private:
base::SimpleTestTickClock* tick_clock_;
@@ -112,17 +112,17 @@ class TestConnectionFactoryImpl : public ConnectionFactoryImpl {
void InitializeFactory();
// Overridden stubs.
- virtual void ConnectImpl() OVERRIDE;
- virtual void InitHandler() OVERRIDE;
+ virtual void ConnectImpl() override;
+ virtual void InitHandler() override;
virtual scoped_ptr<net::BackoffEntry> CreateBackoffEntry(
- const net::BackoffEntry::Policy* const policy) OVERRIDE;
+ const net::BackoffEntry::Policy* const policy) override;
virtual scoped_ptr<ConnectionHandler> CreateConnectionHandler(
base::TimeDelta read_timeout,
const ConnectionHandler::ProtoReceivedCallback& read_callback,
const ConnectionHandler::ProtoSentCallback& write_callback,
const ConnectionHandler::ConnectionChangedCallback& connection_callback)
- OVERRIDE;
- virtual base::TimeTicks NowTicks() OVERRIDE;
+ override;
+ virtual base::TimeTicks NowTicks() override;
// Helpers for verifying connection attempts are made. Connection results
// must be consumed.
@@ -271,8 +271,8 @@ class ConnectionFactoryImplTest
// ConnectionFactory::ConnectionListener
virtual void OnConnected(const GURL& current_server,
- const net::IPEndPoint& ip_endpoint) OVERRIDE;
- virtual void OnDisconnected() OVERRIDE;
+ const net::IPEndPoint& ip_endpoint) override;
+ virtual void OnDisconnected() override;
private:
void ConnectionsComplete();
« no previous file with comments | « google_apis/gcm/engine/connection_factory_impl.h ('k') | google_apis/gcm/engine/connection_handler_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698