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

Side by Side Diff: net/android/keystore.h

Issue 14223008: net: Update the include paths of base/string_piece.h to its new location. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 8 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | net/base/big_endian.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) 2013 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2013 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_ANDROID_KEYSTORE_H 5 #ifndef NET_ANDROID_KEYSTORE_H
6 #define NET_ANDROID_KEYSTORE_H 6 #define NET_ANDROID_KEYSTORE_H
7 7
8 #include <jni.h> 8 #include <jni.h>
9 9
10 #include <string> 10 #include <string>
11 #include <vector> 11 #include <vector>
12 12
13 #include "base/basictypes.h" 13 #include "base/basictypes.h"
14 #include "base/string_piece.h" 14 #include "base/strings/string_piece.h"
15 #include "net/base/net_export.h" 15 #include "net/base/net_export.h"
16 #include "net/ssl/ssl_client_cert_type.h" 16 #include "net/ssl/ssl_client_cert_type.h"
17 17
18 // Avoid including <openssl/evp.h> here. 18 // Avoid including <openssl/evp.h> here.
19 typedef struct evp_pkey_st EVP_PKEY; 19 typedef struct evp_pkey_st EVP_PKEY;
20 20
21 // Misc functions to access the Android platform KeyStore. 21 // Misc functions to access the Android platform KeyStore.
22 22
23 namespace net { 23 namespace net {
24 namespace android { 24 namespace android {
(...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after
108 // the returned key's reference count. 108 // the returned key's reference count.
109 EVP_PKEY* GetOpenSSLSystemHandleForPrivateKey(jobject private_key); 109 EVP_PKEY* GetOpenSSLSystemHandleForPrivateKey(jobject private_key);
110 110
111 // Register JNI methods 111 // Register JNI methods
112 NET_EXPORT bool RegisterKeyStore(JNIEnv* env); 112 NET_EXPORT bool RegisterKeyStore(JNIEnv* env);
113 113
114 } // namespace android 114 } // namespace android
115 } // namespace net 115 } // namespace net
116 116
117 #endif // NET_ANDROID_KEYSTORE_H 117 #endif // NET_ANDROID_KEYSTORE_H
OLDNEW
« no previous file with comments | « no previous file | net/base/big_endian.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698