Loading core/java/android/webkit/BrowserFrame.java +11 −0 Original line number Original line Diff line number Diff line Loading @@ -1177,6 +1177,17 @@ class BrowserFrame extends Handler { contentDisposition, mimeType, contentLength); contentDisposition, mimeType, contentLength); } } /** * Called by JNI when we load a page over SSL. */ private void setCertificate(String issuedTo, String issuedBy, long validNotBeforeMillis, long validNotAfterMillis) { Date validNotBefore = new Date(validNotBeforeMillis); Date validNotAfter = new Date(validNotAfterMillis); mCallbackProxy.onReceivedCertificate(new SslCertificate( issuedTo, issuedBy, validNotBefore, validNotAfter)); } //========================================================================== //========================================================================== // native functions // native functions //========================================================================== //========================================================================== Loading Loading
core/java/android/webkit/BrowserFrame.java +11 −0 Original line number Original line Diff line number Diff line Loading @@ -1177,6 +1177,17 @@ class BrowserFrame extends Handler { contentDisposition, mimeType, contentLength); contentDisposition, mimeType, contentLength); } } /** * Called by JNI when we load a page over SSL. */ private void setCertificate(String issuedTo, String issuedBy, long validNotBeforeMillis, long validNotAfterMillis) { Date validNotBefore = new Date(validNotBeforeMillis); Date validNotAfter = new Date(validNotAfterMillis); mCallbackProxy.onReceivedCertificate(new SslCertificate( issuedTo, issuedBy, validNotBefore, validNotAfter)); } //========================================================================== //========================================================================== // native functions // native functions //========================================================================== //========================================================================== Loading