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

Side by Side Diff: net/ssl/ssl_info.h

Issue 1149113006: Move Pickle to base namespace. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 6 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
« no previous file with comments | « net/http/http_vary_data.h ('k') | ppapi/proxy/ppapi_message_utils.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef NET_SSL_SSL_INFO_H_ 5 #ifndef NET_SSL_SSL_INFO_H_
6 #define NET_SSL_SSL_INFO_H_ 6 #define NET_SSL_SSL_INFO_H_
7 7
8 #include <vector> 8 #include <vector>
9 9
10 #include "base/memory/ref_counted.h" 10 #include "base/memory/ref_counted.h"
11 #include "net/base/net_export.h" 11 #include "net/base/net_export.h"
12 #include "net/cert/cert_status_flags.h" 12 #include "net/cert/cert_status_flags.h"
13 #include "net/cert/sct_status_flags.h" 13 #include "net/cert/sct_status_flags.h"
14 #include "net/cert/x509_cert_types.h" 14 #include "net/cert/x509_cert_types.h"
15 #include "net/ssl/signed_certificate_timestamp_and_status.h" 15 #include "net/ssl/signed_certificate_timestamp_and_status.h"
16 16
17 class Pickle;
18 class PickleIterator;
19
20 namespace net { 17 namespace net {
21 18
22 class X509Certificate; 19 class X509Certificate;
23 20
24 // SSL connection info. 21 // SSL connection info.
25 // This is really a struct. All members are public. 22 // This is really a struct. All members are public.
26 class NET_EXPORT SSLInfo { 23 class NET_EXPORT SSLInfo {
27 public: 24 public:
28 // HandshakeType enumerates the possible resumption cases after an SSL 25 // HandshakeType enumerates the possible resumption cases after an SSL
29 // handshake. 26 // handshake.
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after
86 std::string pinning_failure_log; 83 std::string pinning_failure_log;
87 84
88 // List of SignedCertificateTimestamps and their corresponding validation 85 // List of SignedCertificateTimestamps and their corresponding validation
89 // status. 86 // status.
90 SignedCertificateTimestampAndStatusList signed_certificate_timestamps; 87 SignedCertificateTimestampAndStatusList signed_certificate_timestamps;
91 }; 88 };
92 89
93 } // namespace net 90 } // namespace net
94 91
95 #endif // NET_SSL_SSL_INFO_H_ 92 #endif // NET_SSL_SSL_INFO_H_
OLDNEW
« no previous file with comments | « net/http/http_vary_data.h ('k') | ppapi/proxy/ppapi_message_utils.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698