Skip to content
This repository has been archived by the owner on Jun 2, 2018. It is now read-only.

Commit

Permalink
Merge pull request #92 from marcuspridham/master
Browse files Browse the repository at this point in the history
Handle getKeyTypes and getPrincipals
  • Loading branch information
fujunwei authored Jun 23, 2016
2 parents e1bb40d + 8f0521f commit a29c236
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ public String getHost() {
* Returns the acceptable types of asymmetric keys (can be null).
*/
public String[] getKeyTypes() {
return null;
return request.getKeyTypes();
}

/*
Expand All @@ -67,7 +67,7 @@ public int getPort() {
* key (can be null).
*/
public Principal[] getPrincipals() {
return null;
return request.getPrincipals();
}

/*
Expand Down
2 changes: 1 addition & 1 deletion plugin.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<platform name="android">
<config-file target="res/xml/config.xml" parent="/*">
<preference name="webView" value="org.crosswalk.engine.XWalkWebViewEngine"/>
<preference name="xwalkVersion" default="18+"/>
<preference name="xwalkVersion" default="19+"/>
<preference name="xwalkLiteVersion" default="xwalk_core_library_canary:17+"/>
<preference name="xwalkCommandLine" default="--disable-pull-to-refresh-effect"/>
<preference name="xwalkMode" default="embedded" />
Expand Down

0 comments on commit a29c236

Please sign in to comment.