| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2009 Google Inc. All rights reserved. | 2 * Copyright (C) 2009 Google Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions are | 5 * modification, are permitted provided that the following conditions are |
| 6 * met: | 6 * met: |
| 7 * | 7 * |
| 8 * * Redistributions of source code must retain the above copyright | 8 * * 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 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
| (...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 107 mac(mac), | 107 mac(mac), |
| 108 subjectName(subjectName), | 108 subjectName(subjectName), |
| 109 sanList(sanList), | 109 sanList(sanList), |
| 110 issuer(issuer), | 110 issuer(issuer), |
| 111 validFrom(validFrom), | 111 validFrom(validFrom), |
| 112 validTo(validTo), | 112 validTo(validTo), |
| 113 certificate(certificate), | 113 certificate(certificate), |
| 114 sctList(sctList) {} | 114 sctList(sctList) {} |
| 115 // All strings are human-readable values. | 115 // All strings are human-readable values. |
| 116 WebString protocol; | 116 WebString protocol; |
| 117 // keyExchange is the empty string if not applicable for the connection's | |
| 118 // protocol. | |
| 119 WebString keyExchange; | 117 WebString keyExchange; |
| 120 // keyExchangeGroup is the empty string if not applicable for the | 118 // keyExchangeGroup is the empty string if not applicable for the |
| 121 // connection's key exchange. | 119 // connection's key exchange. |
| 122 WebString keyExchangeGroup; | 120 WebString keyExchangeGroup; |
| 123 WebString cipher; | 121 WebString cipher; |
| 124 // mac is the empty string when the connection cipher suite does not | 122 // mac is the empty string when the connection cipher suite does not |
| 125 // have a separate MAC value (i.e. if the cipher suite is AEAD). | 123 // have a separate MAC value (i.e. if the cipher suite is AEAD). |
| 126 WebString mac; | 124 WebString mac; |
| 127 WebString subjectName; | 125 WebString subjectName; |
| 128 WebVector<WebString> sanList; | 126 WebVector<WebString> sanList; |
| (...skipping 196 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 325 // instance it contains. | 323 // instance it contains. |
| 326 std::unique_ptr<ResourceResponseContainer> m_ownedResourceResponse; | 324 std::unique_ptr<ResourceResponseContainer> m_ownedResourceResponse; |
| 327 | 325 |
| 328 // Should never be null. | 326 // Should never be null. |
| 329 ResourceResponse* m_resourceResponse; | 327 ResourceResponse* m_resourceResponse; |
| 330 }; | 328 }; |
| 331 | 329 |
| 332 } // namespace blink | 330 } // namespace blink |
| 333 | 331 |
| 334 #endif | 332 #endif |
| OLD | NEW |