| 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. |
| 117 WebString keyExchange; | 119 WebString keyExchange; |
| 118 // keyExchangeGroup is the empty string if not applicable for the | 120 // keyExchangeGroup is the empty string if not applicable for the |
| 119 // connection's key exchange. | 121 // connection's key exchange. |
| 120 WebString keyExchangeGroup; | 122 WebString keyExchangeGroup; |
| 121 WebString cipher; | 123 WebString cipher; |
| 122 // mac is the empty string when the connection cipher suite does not | 124 // mac is the empty string when the connection cipher suite does not |
| 123 // have a separate MAC value (i.e. if the cipher suite is AEAD). | 125 // have a separate MAC value (i.e. if the cipher suite is AEAD). |
| 124 WebString mac; | 126 WebString mac; |
| 125 WebString subjectName; | 127 WebString subjectName; |
| 126 WebVector<WebString> sanList; | 128 WebVector<WebString> sanList; |
| (...skipping 196 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 323 // instance it contains. | 325 // instance it contains. |
| 324 std::unique_ptr<ResourceResponseContainer> m_ownedResourceResponse; | 326 std::unique_ptr<ResourceResponseContainer> m_ownedResourceResponse; |
| 325 | 327 |
| 326 // Should never be null. | 328 // Should never be null. |
| 327 ResourceResponse* m_resourceResponse; | 329 ResourceResponse* m_resourceResponse; |
| 328 }; | 330 }; |
| 329 | 331 |
| 330 } // namespace blink | 332 } // namespace blink |
| 331 | 333 |
| 332 #endif | 334 #endif |
| OLD | NEW |