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

Side by Side Diff: net/base/openssl_private_key_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
OLDNEW
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 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_BASE_OPENSSL_PRIVATE_KEY_STORE_H_ 5 #ifndef NET_BASE_OPENSSL_PRIVATE_KEY_STORE_H_
6 #define NET_BASE_OPENSSL_PRIVATE_KEY_STORE_H_ 6 #define NET_BASE_OPENSSL_PRIVATE_KEY_STORE_H_
7 7
8 #include <vector> 8 #include <vector>
9 9
10 // Avoid including <openssl/evp.h> 10 // Avoid including <openssl/evp.h>
11 typedef struct evp_pkey_st EVP_PKEY; 11 typedef struct evp_pkey_st EVP_PKEY;
12 12
13 #include "base/basictypes.h" 13 #include "base/macros.h"
14 #include "net/base/net_export.h" 14 #include "net/base/net_export.h"
15 15
16 class GURL; 16 class GURL;
17 17
18 namespace net { 18 namespace net {
19 19
20 class X509Certificate; 20 class X509Certificate;
21 21
22 // OpenSSLPrivateKeyStore provides an interface for storing 22 // OpenSSLPrivateKeyStore provides an interface for storing
23 // public/private key pairs to system storage on platforms where 23 // public/private key pairs to system storage on platforms where
(...skipping 20 matching lines...) Expand all
44 44
45 private: 45 private:
46 OpenSSLPrivateKeyStore(); // not implemented. 46 OpenSSLPrivateKeyStore(); // not implemented.
47 ~OpenSSLPrivateKeyStore(); // not implemented. 47 ~OpenSSLPrivateKeyStore(); // not implemented.
48 DISALLOW_COPY_AND_ASSIGN(OpenSSLPrivateKeyStore); 48 DISALLOW_COPY_AND_ASSIGN(OpenSSLPrivateKeyStore);
49 }; 49 };
50 50
51 } // namespace net 51 } // namespace net
52 52
53 #endif // NET_BASE_OPENSSL_PRIVATE_KEY_STORE_H_ 53 #endif // NET_BASE_OPENSSL_PRIVATE_KEY_STORE_H_
OLDNEW
« no previous file with comments | « net/base/network_quality_estimator_unittest.cc ('k') | net/base/openssl_private_key_store_memory.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698