Update classes to use module, and make constructors consistent.

This commit is contained in:
Bryce Curtis
2010-09-03 17:24:55 -05:00
parent 5d83a44ec3
commit 40997b4cb8
11 changed files with 63 additions and 74 deletions
@@ -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;
}