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

Unified Diff: net/quic/quic_crypto_client_stream.h

Issue 126243002: Add the override annotation to all necessary methods in .../quic/. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 11 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: net/quic/quic_crypto_client_stream.h
diff --git a/net/quic/quic_crypto_client_stream.h b/net/quic/quic_crypto_client_stream.h
index 1ca423f012b25c022000d69ac2cc0cdb77d20c87..83a5315838b0a3f2e80a5259d061bab4f139f393 100644
--- a/net/quic/quic_crypto_client_stream.h
+++ b/net/quic/quic_crypto_client_stream.h
@@ -29,7 +29,7 @@ class NET_EXPORT_PRIVATE QuicCryptoClientStream : public QuicCryptoStream {
QuicCryptoClientStream(const string& server_hostname,
QuicSession* session,
QuicCryptoClientConfig* crypto_config);
- virtual ~QuicCryptoClientStream();
+ virtual ~QuicCryptoClientStream() OVERRIDE;
// CryptoFramerVisitorInterface implementation
virtual void OnHandshakeMessage(
@@ -55,7 +55,7 @@ class NET_EXPORT_PRIVATE QuicCryptoClientStream : public QuicCryptoStream {
class ProofVerifierCallbackImpl : public ProofVerifierCallback {
public:
explicit ProofVerifierCallbackImpl(QuicCryptoClientStream* stream);
- virtual ~ProofVerifierCallbackImpl();
+ virtual ~ProofVerifierCallbackImpl() OVERRIDE;
// ProofVerifierCallback interface.
virtual void Run(bool ok,

Powered by Google App Engine
This is Rietveld 408576698