| 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 89 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 100 | 100 |
| 101 struct SecurityDetails { | 101 struct SecurityDetails { |
| 102 DISALLOW_NEW(); | 102 DISALLOW_NEW(); |
| 103 SecurityDetails() | 103 SecurityDetails() |
| 104 : validFrom(0) | 104 : validFrom(0) |
| 105 , validTo(0) | 105 , validTo(0) |
| 106 { | 106 { |
| 107 } | 107 } |
| 108 // All strings are human-readable values. | 108 // All strings are human-readable values. |
| 109 String protocol; | 109 String protocol; |
| 110 // keyExchange is the empty string if not applicable for the connection'
s protocol. |
| 110 String keyExchange; | 111 String keyExchange; |
| 111 // keyExchangeGroup is the empty string if not applicable for the connec
tion's key exchange. | 112 // keyExchangeGroup is the empty string if not applicable for the connec
tion's key exchange. |
| 112 String keyExchangeGroup; | 113 String keyExchangeGroup; |
| 113 String cipher; | 114 String cipher; |
| 114 // mac is the empty string when the connection cipher suite does not | 115 // 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). | 116 // have a separate MAC value (i.e. if the cipher suite is AEAD). |
| 116 String mac; | 117 String mac; |
| 117 String subjectName; | 118 String subjectName; |
| 118 Vector<String> sanList; | 119 Vector<String> sanList; |
| 119 String issuer; | 120 String issuer; |
| (...skipping 350 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 470 unsigned short m_remotePort; | 471 unsigned short m_remotePort; |
| 471 long long m_encodedBodyLength; | 472 long long m_encodedBodyLength; |
| 472 long long m_decodedBodyLength; | 473 long long m_decodedBodyLength; |
| 473 String m_downloadedFilePath; | 474 String m_downloadedFilePath; |
| 474 RefPtr<BlobDataHandle> m_downloadedFileHandle; | 475 RefPtr<BlobDataHandle> m_downloadedFileHandle; |
| 475 }; | 476 }; |
| 476 | 477 |
| 477 } // namespace blink | 478 } // namespace blink |
| 478 | 479 |
| 479 #endif // ResourceResponse_h | 480 #endif // ResourceResponse_h |
| OLD | NEW |