You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by ia...@apache.org on 2013/08/23 20:38:01 UTC

android commit: Allow CordovaChromeClient subclasses access to CordovaInterface and CordovaWebView members

Updated Branches:
  refs/heads/master f60498818 -> e6812f18a


Allow CordovaChromeClient subclasses access to CordovaInterface and CordovaWebView members


Project: http://git-wip-us.apache.org/repos/asf/cordova-android/repo
Commit: http://git-wip-us.apache.org/repos/asf/cordova-android/commit/e6812f18
Tree: http://git-wip-us.apache.org/repos/asf/cordova-android/tree/e6812f18
Diff: http://git-wip-us.apache.org/repos/asf/cordova-android/diff/e6812f18

Branch: refs/heads/master
Commit: e6812f18a004594508a1762a287ca262acd50043
Parents: f604988
Author: Ian Clelland <ic...@chromium.org>
Authored: Fri Aug 23 14:37:36 2013 -0400
Committer: Ian Clelland <ic...@chromium.org>
Committed: Fri Aug 23 14:37:36 2013 -0400

----------------------------------------------------------------------
 framework/src/org/apache/cordova/CordovaChromeClient.java | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-android/blob/e6812f18/framework/src/org/apache/cordova/CordovaChromeClient.java
----------------------------------------------------------------------
diff --git a/framework/src/org/apache/cordova/CordovaChromeClient.java b/framework/src/org/apache/cordova/CordovaChromeClient.java
index c55cc8f..cc22b7f 100755
--- a/framework/src/org/apache/cordova/CordovaChromeClient.java
+++ b/framework/src/org/apache/cordova/CordovaChromeClient.java
@@ -54,8 +54,8 @@ public class CordovaChromeClient extends WebChromeClient {
     private static final String LOG_TAG = "CordovaChromeClient";
     private String TAG = "CordovaLog";
     private long MAX_QUOTA = 100 * 1024 * 1024;
-    private CordovaInterface cordova;
-    private CordovaWebView appView;
+    protected CordovaInterface cordova;
+    protected CordovaWebView appView;
 
     // the video progress view
     private View mVideoProgressView;