Index: net/quic/test_tools/crypto_test_utils.cc |
diff --git a/net/quic/test_tools/crypto_test_utils.cc b/net/quic/test_tools/crypto_test_utils.cc |
index cf8df9aab3f213fe7a74e673ffcaabe6d4ffb40e..fe7e8721ccf1b4d1f44e30ffb3398509132a7c65 100644 |
--- a/net/quic/test_tools/crypto_test_utils.cc |
+++ b/net/quic/test_tools/crypto_test_utils.cc |
@@ -41,10 +41,10 @@ class CryptoFramerVisitor : public CryptoFramerVisitorInterface { |
: error_(false) { |
} |
- virtual void OnError(CryptoFramer* framer) OVERRIDE { error_ = true; } |
+ virtual void OnError(CryptoFramer* framer) override { error_ = true; } |
virtual void OnHandshakeMessage( |
- const CryptoHandshakeMessage& message) OVERRIDE { |
+ const CryptoHandshakeMessage& message) override { |
messages_.push_back(message); |
} |
@@ -143,7 +143,7 @@ class AsyncTestChannelIDSource : public ChannelIDSource, |
virtual QuicAsyncStatus GetChannelIDKey( |
const string& hostname, |
scoped_ptr<ChannelIDKey>* channel_id_key, |
- ChannelIDSourceCallback* callback) OVERRIDE { |
+ ChannelIDSourceCallback* callback) override { |
// Synchronous mode. |
if (!callback) { |
return sync_source_->GetChannelIDKey(hostname, channel_id_key, nullptr); |
@@ -160,7 +160,7 @@ class AsyncTestChannelIDSource : public ChannelIDSource, |
} |
// CallbackSource implementation. |
- virtual void RunPendingCallbacks() OVERRIDE { |
+ virtual void RunPendingCallbacks() override { |
if (callback_.get()) { |
callback_->Run(&channel_id_key_); |
callback_.reset(); |
@@ -356,12 +356,12 @@ class MockCommonCertSets : public CommonCertSets { |
index_(index) { |
} |
- virtual StringPiece GetCommonHashes() const OVERRIDE { |
+ virtual StringPiece GetCommonHashes() const override { |
CHECK(false) << "not implemented"; |
return StringPiece(); |
} |
- virtual StringPiece GetCert(uint64 hash, uint32 index) const OVERRIDE { |
+ virtual StringPiece GetCert(uint64 hash, uint32 index) const override { |
if (hash == hash_ && index == index_) { |
return cert_; |
} |
@@ -371,7 +371,7 @@ class MockCommonCertSets : public CommonCertSets { |
virtual bool MatchCert(StringPiece cert, |
StringPiece common_set_hashes, |
uint64* out_hash, |
- uint32* out_index) const OVERRIDE { |
+ uint32* out_index) const override { |
if (cert != cert_) { |
return false; |
} |