| Index: third_party/WebKit/public/platform/WebURLResponse.h
|
| diff --git a/third_party/WebKit/public/platform/WebURLResponse.h b/third_party/WebKit/public/platform/WebURLResponse.h
|
| index af75edc2a2f80c0159811dbf6883fb12dffe81ac..d44a28e1bc9605f3a68ff48eb1351f226567b1a8 100644
|
| --- a/third_party/WebKit/public/platform/WebURLResponse.h
|
| +++ b/third_party/WebKit/public/platform/WebURLResponse.h
|
| @@ -100,18 +100,12 @@ public:
|
| const WebString& cipher,
|
| const WebString& mac,
|
| int certId,
|
| - size_t numUnknownScts,
|
| - size_t numInvalidScts,
|
| - size_t numValidScts,
|
| const SignedCertificateTimestampList& sctList)
|
| : protocol(protocol)
|
| , keyExchange(keyExchange)
|
| , cipher(cipher)
|
| , mac(mac)
|
| , certId(certId)
|
| - , numUnknownScts(numUnknownScts)
|
| - , numInvalidScts(numInvalidScts)
|
| - , numValidScts(numValidScts)
|
| , sctList(sctList)
|
| {
|
| }
|
| @@ -123,9 +117,6 @@ public:
|
| // have a separate MAC value (i.e. if the cipher suite is AEAD).
|
| WebString mac;
|
| int certId;
|
| - size_t numUnknownScts;
|
| - size_t numInvalidScts;
|
| - size_t numValidScts;
|
| SignedCertificateTimestampList sctList;
|
| };
|
|
|
|
|