mirror of
https://github.com/apache/cordova-android.git
synced 2026-04-23 00:00:09 +08:00
Update classes to use module, and make constructors consistent.
This commit is contained in:
@@ -2,12 +2,13 @@ package com.phonegap;
|
||||
|
||||
import android.webkit.WebView;
|
||||
|
||||
public class CryptoHandler {
|
||||
public class CryptoHandler extends Module {
|
||||
|
||||
WebView mView;
|
||||
|
||||
CryptoHandler(WebView view)
|
||||
public CryptoHandler(WebView view, DroidGap gap)
|
||||
{
|
||||
super(view, gap);
|
||||
mView = view;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user