| Index: net/http/http_server_properties.h
|
| diff --git a/net/http/http_server_properties.h b/net/http/http_server_properties.h
|
| index 9e022fa54b84b451847be055a7308b2f5906dc07..f7541dcf8769089c262f45501c1e60044326f209 100644
|
| --- a/net/http/http_server_properties.h
|
| +++ b/net/http/http_server_properties.h
|
| @@ -23,6 +23,7 @@
|
| #include "net/socket/next_proto.h"
|
| #include "net/spdy/spdy_framer.h" // TODO(willchan): Reconsider this.
|
| #include "net/spdy/spdy_protocol.h"
|
| +#include "url/scheme_host_port.h"
|
|
|
| namespace base {
|
| class Value;
|
| @@ -237,14 +238,14 @@ class NET_EXPORT HttpServerProperties {
|
|
|
| // Returns true if |server| supports a network protocol which honors
|
| // request prioritization.
|
| - virtual bool SupportsRequestPriority(const HostPortPair& server) = 0;
|
| + virtual bool SupportsRequestPriority(const url::SchemeHostPort& server) = 0;
|
|
|
| // Returns the value set by SetSupportsSpdy(). If not set, returns false.
|
| - virtual bool GetSupportsSpdy(const HostPortPair& server) = 0;
|
| + virtual bool GetSupportsSpdy(const url::SchemeHostPort& server) = 0;
|
|
|
| // Add |server| into the persistent store. Should only be called from IO
|
| // thread.
|
| - virtual void SetSupportsSpdy(const HostPortPair& server,
|
| + virtual void SetSupportsSpdy(const url::SchemeHostPort& server,
|
| bool support_spdy) = 0;
|
|
|
| // Returns true if |server| has required HTTP/1.1 via HTTP/2 error code.
|
|
|