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

Unified Diff: content/public/renderer/document_state.h

Issue 2356013002: Remove unused was_fetched_via_proxy members (Closed)
Patch Set: remove even more! 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
« no previous file with comments | « content/public/common/resource_response_info.cc ('k') | content/public/renderer/document_state.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/public/renderer/document_state.h
diff --git a/content/public/renderer/document_state.h b/content/public/renderer/document_state.h
index cda7fa92e546514178af6f5889916f740f106517..7da18d8e411f3de2aeb37bf9b8f1940d8ea9e37e 100644
--- a/content/public/renderer/document_state.h
+++ b/content/public/renderer/document_state.h
@@ -157,17 +157,6 @@ class CONTENT_EXPORT DocumentState
connection_info_ = connection_info;
}
- bool was_fetched_via_proxy() const { return was_fetched_via_proxy_; }
- void set_was_fetched_via_proxy(bool value) {
- was_fetched_via_proxy_ = value;
- }
-
- const net::HostPortPair& proxy_server() const { return proxy_server_; }
- void set_proxy_server(const net::HostPortPair& proxy_server) {
- proxy_server_ = proxy_server;
- }
-
-
// For LoadDataWithBaseURL navigations, |was_load_data_with_base_url_request_|
// is set to true and |data_url_| is set to the data URL of the navigation.
// Otherwise, |was_load_data_with_base_url_request_| is false and |data_url_|
@@ -212,8 +201,6 @@ class CONTENT_EXPORT DocumentState
std::string alpn_negotiated_protocol_;
bool was_alternate_protocol_available_;
net::HttpResponseInfo::ConnectionInfo connection_info_;
- bool was_fetched_via_proxy_;
- net::HostPortPair proxy_server_;
bool was_load_data_with_base_url_request_;
GURL data_url_;
« no previous file with comments | « content/public/common/resource_response_info.cc ('k') | content/public/renderer/document_state.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698