| Index: net/quic/quic_server_id.h
|
| diff --git a/net/quic/quic_server_id.h b/net/quic/quic_server_id.h
|
| index 0daf0b8bb4110e6a1b423d21fcf752108de33b7a..4e3f067948e895274760a5caad06b687af609295 100644
|
| --- a/net/quic/quic_server_id.h
|
| +++ b/net/quic/quic_server_id.h
|
| @@ -19,14 +19,10 @@ class NET_EXPORT_PRIVATE QuicServerId {
|
| public:
|
| QuicServerId();
|
| QuicServerId(const HostPortPair& host_port_pair,
|
| - bool is_https,
|
| PrivacyMode privacy_mode);
|
| + QuicServerId(const std::string& host, uint16 port);
|
| QuicServerId(const std::string& host,
|
| uint16 port,
|
| - bool is_https);
|
| - QuicServerId(const std::string& host,
|
| - uint16 port,
|
| - bool is_https,
|
| PrivacyMode privacy_mode);
|
| ~QuicServerId();
|
|
|
| @@ -39,8 +35,7 @@ class NET_EXPORT_PRIVATE QuicServerId {
|
| static QuicServerId FromString(const std::string& str);
|
|
|
| // ToString() will convert the QuicServerId to "scheme:hostname:port" or
|
| - // "scheme:hostname:port/private". "scheme" would either be "http" or "https"
|
| - // based on |is_https|.
|
| + // "scheme:hostname:port/private". "scheme" will be "https".
|
| std::string ToString() const;
|
|
|
| // Used in Chromium, but not in the server.
|
| @@ -50,13 +45,10 @@ class NET_EXPORT_PRIVATE QuicServerId {
|
|
|
| uint16 port() const { return host_port_pair_.port(); }
|
|
|
| - 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_;
|
| };
|
|
|
|
|