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

Unified Diff: net/http/http_net_log_params.h

Issue 6314010: Even more reordering the methods in headers and implementation in net/. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 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_auth_cache.cc ('k') | net/http/http_proxy_client_socket.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/http/http_net_log_params.h
diff --git a/net/http/http_net_log_params.h b/net/http/http_net_log_params.h
index 1631363f84e57f70fa1b5665ed623116caa5a91c..c32250e5d5bd1b1277189a86f394d995cc3738a9 100644
--- a/net/http/http_net_log_params.h
+++ b/net/http/http_net_log_params.h
@@ -24,8 +24,6 @@ class NetLogHttpRequestParameter : public NetLog::EventParameters {
NetLogHttpRequestParameter(const std::string& line,
const HttpRequestHeaders& headers);
- virtual Value* ToValue() const;
-
const HttpRequestHeaders& GetHeaders() const {
return headers_;
}
@@ -34,6 +32,9 @@ class NetLogHttpRequestParameter : public NetLog::EventParameters {
return line_;
}
+ // NetLog::EventParameters
+ virtual Value* ToValue() const;
+
private:
virtual ~NetLogHttpRequestParameter();
@@ -48,12 +49,13 @@ class NetLogHttpResponseParameter : public NetLog::EventParameters {
explicit NetLogHttpResponseParameter(
const scoped_refptr<HttpResponseHeaders>& headers);
- virtual Value* ToValue() const;
-
const HttpResponseHeaders& GetHeaders() const {
return *headers_;
}
+ // NetLog::EventParameters
+ virtual Value* ToValue() const;
+
private:
virtual ~NetLogHttpResponseParameter();
« no previous file with comments | « net/http/http_auth_cache.cc ('k') | net/http/http_proxy_client_socket.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698