Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(96)

Side by Side Diff: third_party/WebKit/Source/platform/network/ResourceResponse.h

Issue 2395323002: Roll src/third_party/boringssl/src 0d81373f9..1991af690 (Closed)
Patch Set: rebase, roll further Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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.
107 String keyExchange; 109 String keyExchange;
108 // keyExchangeGroup is the empty string if not applicable for the 110 // keyExchangeGroup is the empty string if not applicable for the
109 // connection's key exchange. 111 // connection's key exchange.
110 String keyExchangeGroup; 112 String keyExchangeGroup;
111 String cipher; 113 String cipher;
112 // mac is the empty string when the connection cipher suite does not 114 // mac is the empty string when the connection cipher suite does not
113 // have a separate MAC value (i.e. if the cipher suite is AEAD). 115 // have a separate MAC value (i.e. if the cipher suite is AEAD).
114 String mac; 116 String mac;
115 String subjectName; 117 String subjectName;
116 Vector<String> sanList; 118 Vector<String> sanList;
(...skipping 425 matching lines...) Expand 10 before | Expand all | Expand 10 after
542 long long m_encodedDataLength; 544 long long m_encodedDataLength;
543 long long m_encodedBodyLength; 545 long long m_encodedBodyLength;
544 long long m_decodedBodyLength; 546 long long m_decodedBodyLength;
545 String m_downloadedFilePath; 547 String m_downloadedFilePath;
546 RefPtr<BlobDataHandle> m_downloadedFileHandle; 548 RefPtr<BlobDataHandle> m_downloadedFileHandle;
547 }; 549 };
548 550
549 } // namespace blink 551 } // namespace blink
550 552
551 #endif // ResourceResponse_h 553 #endif // ResourceResponse_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698