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

Unified Diff: net/quic/quic_crypto_client_stream_test.cc

Issue 12813004: Chromium style checker cleanup (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebased Created 7 years, 9 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 | « net/quic/crypto/crypto_framer.cc ('k') | net/quic/quic_crypto_server_stream_test.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/quic/quic_crypto_client_stream_test.cc
diff --git a/net/quic/quic_crypto_client_stream_test.cc b/net/quic/quic_crypto_client_stream_test.cc
index 10dcb5b723e62cb1ddf6ce24f5ad56a79528bd98..81f67bb7907de944c8269df100deac14428dc2ce 100644
--- a/net/quic/quic_crypto_client_stream_test.cc
+++ b/net/quic/quic_crypto_client_stream_test.cc
@@ -26,7 +26,7 @@ class TestQuicVisitor : public NoOpFramerVisitor {
}
// NoOpFramerVisitor
- virtual void OnStreamFrame(const QuicStreamFrame& frame) {
+ virtual void OnStreamFrame(const QuicStreamFrame& frame) OVERRIDE {
frame_ = frame;
frame_valid_ = true;
}
@@ -51,8 +51,10 @@ class TestMockSession : public MockSession {
}
virtual ~TestMockSession() {}
- virtual QuicConsumedData WriteData(QuicStreamId id, base::StringPiece data,
- QuicStreamOffset offset, bool fin) {
+ virtual QuicConsumedData WriteData(QuicStreamId id,
+ base::StringPiece data,
+ QuicStreamOffset offset,
+ bool fin) OVERRIDE {
return QuicSession::WriteData(id, data, offset, fin);
}
};
« no previous file with comments | « net/quic/crypto/crypto_framer.cc ('k') | net/quic/quic_crypto_server_stream_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698