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

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

Issue 1535363003: Switch to standard integer types in net/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: stddef Created 5 years 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/ssl/channel_id_service_unittest.cc ('k') | net/ssl/client_cert_store_mac.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_CLIENT_CERT_STORE_H_ 5 #ifndef NET_SSL_CLIENT_CERT_STORE_H_
6 #define NET_SSL_CLIENT_CERT_STORE_H_ 6 #define NET_SSL_CLIENT_CERT_STORE_H_
7 7
8 #include "base/basictypes.h"
9 #include "base/callback_forward.h" 8 #include "base/callback_forward.h"
9 #include "base/macros.h"
10 #include "net/base/net_export.h" 10 #include "net/base/net_export.h"
11 #include "net/cert/x509_certificate.h" 11 #include "net/cert/x509_certificate.h"
12 12
13 namespace net { 13 namespace net {
14 14
15 class SSLCertRequestInfo; 15 class SSLCertRequestInfo;
16 16
17 // A handle to a client certificate store to query matching certificates when a 17 // A handle to a client certificate store to query matching certificates when a
18 // server requests client auth. Note that there may be multiple ClientCertStore 18 // server requests client auth. Note that there may be multiple ClientCertStore
19 // objects corresponding to the same platform certificate store; each request 19 // objects corresponding to the same platform certificate store; each request
(...skipping 13 matching lines...) Expand all
33 protected: 33 protected:
34 ClientCertStore() {} 34 ClientCertStore() {}
35 35
36 private: 36 private:
37 DISALLOW_COPY_AND_ASSIGN(ClientCertStore); 37 DISALLOW_COPY_AND_ASSIGN(ClientCertStore);
38 }; 38 };
39 39
40 } // namespace net 40 } // namespace net
41 41
42 #endif // NET_SSL_CLIENT_CERT_STORE_H_ 42 #endif // NET_SSL_CLIENT_CERT_STORE_H_
OLDNEW
« no previous file with comments | « net/ssl/channel_id_service_unittest.cc ('k') | net/ssl/client_cert_store_mac.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698