| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2006, 2008 Apple Inc. All rights reserved. | 2 * Copyright (C) 2006, 2008 Apple Inc. All rights reserved. |
| 3 * Copyright (C) 2009 Google Inc. All rights reserved. | 3 * Copyright (C) 2009 Google Inc. All rights reserved. |
| 4 * | 4 * |
| 5 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
| 6 * modification, are permitted provided that the following conditions | 6 * modification, are permitted provided that the following conditions |
| 7 * are met: | 7 * are met: |
| 8 * 1. Redistributions of source code must retain the above copyright | 8 * 1. Redistributions of source code must retain the above copyright |
| 9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
| 10 * 2. Redistributions in binary form must reproduce the above copyright | 10 * 2. Redistributions in binary form must reproduce the above copyright |
| (...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 97 }; | 97 }; |
| 98 | 98 |
| 99 using SignedCertificateTimestampList = | 99 using SignedCertificateTimestampList = |
| 100 WTF::Vector<SignedCertificateTimestamp>; | 100 WTF::Vector<SignedCertificateTimestamp>; |
| 101 | 101 |
| 102 struct SecurityDetails { | 102 struct SecurityDetails { |
| 103 DISALLOW_NEW(); | 103 DISALLOW_NEW(); |
| 104 SecurityDetails() : validFrom(0), validTo(0) {} | 104 SecurityDetails() : validFrom(0), validTo(0) {} |
| 105 // All strings are human-readable values. | 105 // All strings are human-readable values. |
| 106 String protocol; | 106 String protocol; |
| 107 // keyExchange is the empty string if not applicable for the connection's | |
| 108 // protocol. | |
| 109 String keyExchange; | 107 String keyExchange; |
| 110 // keyExchangeGroup is the empty string if not applicable for the | 108 // keyExchangeGroup is the empty string if not applicable for the |
| 111 // connection's key exchange. | 109 // connection's key exchange. |
| 112 String keyExchangeGroup; | 110 String keyExchangeGroup; |
| 113 String cipher; | 111 String cipher; |
| 114 // mac is the empty string when the connection cipher suite does not | 112 // mac is the empty string when the connection cipher suite does not |
| 115 // have a separate MAC value (i.e. if the cipher suite is AEAD). | 113 // have a separate MAC value (i.e. if the cipher suite is AEAD). |
| 116 String mac; | 114 String mac; |
| 117 String subjectName; | 115 String subjectName; |
| 118 Vector<String> sanList; | 116 Vector<String> sanList; |
| (...skipping 425 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 544 long long m_encodedDataLength; | 542 long long m_encodedDataLength; |
| 545 long long m_encodedBodyLength; | 543 long long m_encodedBodyLength; |
| 546 long long m_decodedBodyLength; | 544 long long m_decodedBodyLength; |
| 547 String m_downloadedFilePath; | 545 String m_downloadedFilePath; |
| 548 RefPtr<BlobDataHandle> m_downloadedFileHandle; | 546 RefPtr<BlobDataHandle> m_downloadedFileHandle; |
| 549 }; | 547 }; |
| 550 | 548 |
| 551 } // namespace blink | 549 } // namespace blink |
| 552 | 550 |
| 553 #endif // ResourceResponse_h | 551 #endif // ResourceResponse_h |
| OLD | NEW |