| Index: net/http/transport_security_state.h
|
| diff --git a/net/http/transport_security_state.h b/net/http/transport_security_state.h
|
| index 2f97d9d34e5a6a20be27b1bcb1b96bbbad56c187..b441763cb082334c61120bfa7cfb91fba30d59c6 100644
|
| --- a/net/http/transport_security_state.h
|
| +++ b/net/http/transport_security_state.h
|
| @@ -17,7 +17,6 @@
|
| #include "net/base/net_export.h"
|
| #include "net/cert/x509_cert_types.h"
|
| #include "net/cert/x509_certificate.h"
|
| -#include "url/gurl.h"
|
|
|
| namespace net {
|
|
|
| @@ -130,10 +129,6 @@
|
| // The domain which matched during a search for this DomainState entry.
|
| // Updated by |GetDynamicPKPState| and |GetStaticDomainState|.
|
| std::string domain;
|
| -
|
| - // An optional URI indicating where reports should be sent when this
|
| - // pin is violated, or empty when omitted.
|
| - GURL report_uri;
|
|
|
| // Takes a set of SubjectPublicKeyInfo |hashes| and returns true if:
|
| // 1) |bad_static_spki_hashes| does not intersect |hashes|; AND
|
| @@ -273,8 +268,7 @@
|
| void AddHPKP(const std::string& host,
|
| const base::Time& expiry,
|
| bool include_subdomains,
|
| - const HashValueVector& hashes,
|
| - const GURL& report_uri);
|
| + const HashValueVector& hashes);
|
|
|
| // Returns true iff we have any static public key pins for the |host| and
|
| // iff its set of required pins is the set we expect for Google
|
| @@ -331,8 +325,7 @@
|
| const base::Time& last_observed,
|
| const base::Time& expiry,
|
| bool include_subdomains,
|
| - const HashValueVector& hashes,
|
| - const GURL& report_uri);
|
| + const HashValueVector& hashes);
|
|
|
| // Enable TransportSecurity for |host|. |state| supercedes any previous
|
| // state for the |host|, including static entries.
|
|
|