Remove fields from CordovaWebView interface

Fields don't make sense in an interface.
This commit is contained in:
Andrew Grieve 2014-06-24 15:28:53 -04:00
parent d66bb84924
commit 428e1bc14d
2 changed files with 1 additions and 8 deletions

View File

@ -69,8 +69,7 @@ import android.widget.FrameLayout;
*/
public class AndroidWebView extends WebView implements CordovaWebView {
public static final String TAG = "CordovaWebView";
public static final String CORDOVA_VERSION = "4.0.0-dev";
public static final String TAG = "AndroidWebView";
private HashSet<Integer> boundKeyCodes = new HashSet<Integer>();

View File

@ -12,12 +12,6 @@ import android.webkit.WebChromeClient.CustomViewCallback;
import android.widget.LinearLayout.LayoutParams;
public interface CordovaWebView {
String OVER_SCROLL_NEVER = null;
Object pluginManager = null;
Object jsMessageQueue = null;
public static final String TAG = "CordovaWebView";
public static final String CORDOVA_VERSION = "4.0.0-dev";
View getView();