OLD | NEW |
---|---|
(Empty) | |
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 | |
3 // found in the LICENSE file. | |
4 | |
5 #ifndef CHROME_BROWSER_UI_ANDROID_SSL_CLIENT_CERTIFICATE_REQUEST_JNI_H_ | |
6 #define CHROME_BROWSER_UI_ANDROID_SSL_CLIENT_CERTIFICATE_REQUEST_JNI_H_ | |
7 | |
8 #include <jni.h> | |
9 | |
10 // Register JNI methods for SSLClientCertificateRequest.java | |
11 // This is implemented by ssl_client_certificate_request.cc but | |
12 // appears in an independent header to avoid dragging OpenSSL include | |
13 // path dependencies into chrome_browser.gypi. | |
bulach
2013/02/28 16:34:18
sorry, I'm not quite sure I understood this... wou
digit
2013/02/28 16:49:00
Yes, I know it's a bit confusing.
So this function
digit1
2013/03/04 19:03:20
I've reworked the code to get rid of this header.
| |
14 bool RegisterSSLClientCertificateRequestAndroid(JNIEnv* env); | |
15 | |
16 #endif // CHROME_BROWSER_UI_ANDROID_SSL_CLIENT_CERTIFICATE_REQUEST_JNI_H_ | |
OLD | NEW |