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

Unified Diff: net/http/http_network_transaction.cc

Issue 143073006: Minor cleanup of SetQuicServerInfo. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: moved inlined empty code into .cc file 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
« no previous file with comments | « net/http/http_network_transaction.h ('k') | net/http/http_transaction.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/http/http_network_transaction.cc
diff --git a/net/http/http_network_transaction.cc b/net/http/http_network_transaction.cc
index 8fb5a28f869c4781e7473c50517f1d319e4c6425..10501a4fad065890f1d23f9bd2c1a7f521e3611a 100644
--- a/net/http/http_network_transaction.cc
+++ b/net/http/http_network_transaction.cc
@@ -379,6 +379,8 @@ int HttpNetworkTransaction::Read(IOBuffer* buf, int buf_len,
return rv;
}
+void HttpNetworkTransaction::StopCaching() {}
+
bool HttpNetworkTransaction::GetFullRequestHeaders(
HttpRequestHeaders* headers) const {
// TODO(ttuttle): Make sure we've populated request_headers_.
@@ -393,6 +395,8 @@ int64 HttpNetworkTransaction::GetTotalReceivedBytes() const {
return total_received_bytes;
}
+void HttpNetworkTransaction::DoneReading() {}
+
const HttpResponseInfo* HttpNetworkTransaction::GetResponseInfo() const {
return ((headers_valid_ && response_.headers.get()) ||
response_.ssl_info.cert.get() || response_.cert_request_info.get())
@@ -429,6 +433,9 @@ UploadProgress HttpNetworkTransaction::GetUploadProgress() const {
return static_cast<HttpStream*>(stream_.get())->GetUploadProgress();
}
+void HttpNetworkTransaction::SetQuicServerInfo(
+ QuicServerInfo* quic_server_info) {}
+
bool HttpNetworkTransaction::GetLoadTimingInfo(
LoadTimingInfo* load_timing_info) const {
if (!stream_ || !stream_->GetLoadTimingInfo(load_timing_info))
« no previous file with comments | « net/http/http_network_transaction.h ('k') | net/http/http_transaction.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698