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

Unified Diff: net/tools/quic/quic_spdy_client_stream.h

Issue 105103007: Minor cleanup of QuicSpdyServerStream and QuicSpdyClientStream. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years 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 | « no previous file | net/tools/quic/quic_spdy_client_stream.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/tools/quic/quic_spdy_client_stream.h
diff --git a/net/tools/quic/quic_spdy_client_stream.h b/net/tools/quic/quic_spdy_client_stream.h
index 984f64ba7de73a52819c3b73f89e5a37dd1e22f5..2b17205f53e1cf35d18ebcfcf7f3087433c4d703 100644
--- a/net/tools/quic/quic_spdy_client_stream.h
+++ b/net/tools/quic/quic_spdy_client_stream.h
@@ -41,12 +41,12 @@ class QuicSpdyClientStream : public QuicDataStream {
// Serializes the headers and body, sends it to the server, and
// returns the number of bytes sent.
- virtual ssize_t SendRequest(const BalsaHeaders& headers,
- base::StringPiece body,
- bool fin);
+ ssize_t SendRequest(const BalsaHeaders& headers,
+ base::StringPiece body,
+ bool fin);
// Sends body data to the server, or buffers if it can't be sent immediately.
- virtual void SendBody(const std::string& data, bool fin);
+ void SendBody(const std::string& data, bool fin);
// Returns the response data.
const std::string& data() { return data_; }
« no previous file with comments | « no previous file | net/tools/quic/quic_spdy_client_stream.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698