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

Unified Diff: net/http/http_basic_state.h

Issue 2298823002: Resetting the HttpRequestInfo pointers in HttpNetworkTransaction and streams (Closed)
Patch Set: Rebased, removed upload progress plumbing, feedback. (Rebased till refs/heads/master@{#417381}) Created 4 years, 3 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/http/http_basic_state.h
diff --git a/net/http/http_basic_state.h b/net/http/http_basic_state.h
index f8f1ca58e20e6c5aa78c1810d2f26cf4c03e8d50..847c5aadd2eb4874963a6881fceb3d6f346eb806 100644
--- a/net/http/http_basic_state.h
+++ b/net/http/http_basic_state.h
@@ -16,6 +16,7 @@
#include "net/base/completion_callback.h"
#include "net/base/net_export.h"
#include "net/base/request_priority.h"
+#include "url/gurl.h"
namespace net {
@@ -70,7 +71,8 @@ class NET_EXPORT_PRIVATE HttpBasicState {
const bool http_09_on_non_default_ports_enabled_;
- const HttpRequestInfo* request_info_;
+ GURL url_;
+ std::string request_method_;
DISALLOW_COPY_AND_ASSIGN(HttpBasicState);
};

Powered by Google App Engine
This is Rietveld 408576698