am 42ca4975: am 6f2adcf9: am b0cbf860: Merge "Tracking libcore change to use longs instead of ints to store pointers in OpenSSL binding"
* commit '42ca4975dc6ec2c206f8e7e883e1d0d549b44c95': Tracking libcore change to use longs instead of ints to store pointers in OpenSSL binding
This commit is contained in:
@@ -1322,7 +1322,7 @@ class BrowserFrame extends Handler {
|
||||
private native void nativeSslCertErrorCancel(int handle, int certError);
|
||||
|
||||
native void nativeSslClientCert(int handle,
|
||||
int ctx,
|
||||
long ctx,
|
||||
byte[][] asn1DerEncodedCertificateChain);
|
||||
|
||||
native void nativeSslClientCert(int handle,
|
||||
|
||||
@@ -75,7 +75,7 @@ public final class ClientCertRequestHandler extends Handler {
|
||||
/**
|
||||
* Proceed with the specified private key bytes and client certificate chain.
|
||||
*/
|
||||
private void setSslClientCertFromCtx(final int ctx, final byte[][] chainBytes) {
|
||||
private void setSslClientCertFromCtx(final long ctx, final byte[][] chainBytes) {
|
||||
post(new Runnable() {
|
||||
public void run() {
|
||||
mBrowserFrame.nativeSslClientCert(mHandle, ctx, chainBytes);
|
||||
|
||||
Reference in New Issue
Block a user