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

Unified Diff: net/quic/quic_session_key.h

Issue 211373004: Revert of Add PrivacyMode support to the QuicStreamFactory. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 9 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/quic/quic_http_stream_test.cc ('k') | net/quic/quic_session_key.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/quic/quic_session_key.h
diff --git a/net/quic/quic_session_key.h b/net/quic/quic_session_key.h
index 6cd43e7b9c93cda7cf190233cf2e047bb9222122..12975fa5d2c78ecf8e58799e91155279c509656b 100644
--- a/net/quic/quic_session_key.h
+++ b/net/quic/quic_session_key.h
@@ -9,7 +9,6 @@
#include "net/base/host_port_pair.h"
#include "net/base/net_export.h"
-#include "net/base/privacy_mode.h"
namespace net {
@@ -17,13 +16,8 @@
class NET_EXPORT_PRIVATE QuicSessionKey {
public:
QuicSessionKey();
- QuicSessionKey(const HostPortPair& host_port_pair,
- bool is_https,
- PrivacyMode privacy_mode);
- QuicSessionKey(const std::string& host,
- uint16 port,
- bool is_https,
- PrivacyMode privacy_mode);
+ QuicSessionKey(const HostPortPair& host_port_pair, bool is_https);
+ QuicSessionKey(const std::string& host, uint16 port, bool is_https);
~QuicSessionKey();
// Needed to be an element of std::set.
@@ -44,12 +38,9 @@
bool is_https() const { return is_https_; }
- PrivacyMode privacy_mode() const { return privacy_mode_; }
-
private:
HostPortPair host_port_pair_;
bool is_https_;
- PrivacyMode privacy_mode_;
};
} // namespace net
« no previous file with comments | « net/quic/quic_http_stream_test.cc ('k') | net/quic/quic_session_key.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698