| 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 105 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 116 , sanList(sanList) | 116 , sanList(sanList) |
| 117 , issuer(issuer) | 117 , issuer(issuer) |
| 118 , validFrom(validFrom) | 118 , validFrom(validFrom) |
| 119 , validTo(validTo) | 119 , validTo(validTo) |
| 120 , certificate(certificate) | 120 , certificate(certificate) |
| 121 , sctList(sctList) | 121 , sctList(sctList) |
| 122 { | 122 { |
| 123 } | 123 } |
| 124 // All strings are human-readable values. | 124 // All strings are human-readable values. |
| 125 WebString protocol; | 125 WebString protocol; |
| 126 // keyExchange is the empty string if not applicable for the connection'
s protocol. |
| 126 WebString keyExchange; | 127 WebString keyExchange; |
| 127 // keyExchangeGroup is the empty string if not applicable for the connec
tion's key exchange. | 128 // keyExchangeGroup is the empty string if not applicable for the connec
tion's key exchange. |
| 128 WebString keyExchangeGroup; | 129 WebString keyExchangeGroup; |
| 129 WebString cipher; | 130 WebString cipher; |
| 130 // mac is the empty string when the connection cipher suite does not | 131 // mac is the empty string when the connection cipher suite does not |
| 131 // have a separate MAC value (i.e. if the cipher suite is AEAD). | 132 // have a separate MAC value (i.e. if the cipher suite is AEAD). |
| 132 WebString mac; | 133 WebString mac; |
| 133 WebString subjectName; | 134 WebString subjectName; |
| 134 WebVector<WebString> sanList; | 135 WebVector<WebString> sanList; |
| 135 WebString issuer; | 136 WebString issuer; |
| (...skipping 183 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 319 // instance it contains. | 320 // instance it contains. |
| 320 std::unique_ptr<ResourceResponseContainer> m_ownedResourceResponse; | 321 std::unique_ptr<ResourceResponseContainer> m_ownedResourceResponse; |
| 321 | 322 |
| 322 // Should never be null. | 323 // Should never be null. |
| 323 ResourceResponse* m_resourceResponse; | 324 ResourceResponse* m_resourceResponse; |
| 324 }; | 325 }; |
| 325 | 326 |
| 326 } // namespace blink | 327 } // namespace blink |
| 327 | 328 |
| 328 #endif | 329 #endif |
| OLD | NEW |