You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by ma...@apache.org on 2014/08/26 22:38:58 UTC

android commit: CB-7291 propogate change in method signature to the native tests

Repository: cordova-android
Updated Branches:
  refs/heads/master 2e3e4ec3b -> 94c096dd5


CB-7291 propogate change in method signature to the native tests


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

Branch: refs/heads/master
Commit: 94c096dd5b2a042534de72a53ee9bf166118eb83
Parents: 2e3e4ec
Author: Marcel Kinard <cm...@gmail.com>
Authored: Tue Aug 26 16:38:04 2014 -0400
Committer: Marcel Kinard <cm...@gmail.com>
Committed: Tue Aug 26 16:38:04 2014 -0400

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


http://git-wip-us.apache.org/repos/asf/cordova-android/blob/94c096dd/test/src/org/apache/cordova/test/CordovaWebViewTestActivity.java
----------------------------------------------------------------------
diff --git a/test/src/org/apache/cordova/test/CordovaWebViewTestActivity.java b/test/src/org/apache/cordova/test/CordovaWebViewTestActivity.java
index 1c1789e..d427047 100644
--- a/test/src/org/apache/cordova/test/CordovaWebViewTestActivity.java
+++ b/test/src/org/apache/cordova/test/CordovaWebViewTestActivity.java
@@ -52,7 +52,7 @@ public class CordovaWebViewTestActivity extends Activity implements CordovaInter
         
         cordovaWebView = (CordovaWebView) findViewById(R.id.cordovaWebView);
         cordovaWebView.init(this, new CordovaWebViewClient(this, cordovaWebView), new CordovaChromeClient(this, cordovaWebView),
-                Config.getPluginEntries(), Config.getWhitelist(), Config.getPreferences());
+                Config.getPluginEntries(), Config.getWhitelist(), Config.getExternalWhitelist(), Config.getPreferences());
 
         cordovaWebView.loadUrl("file:///android_asset/www/index.html");
 
@@ -105,4 +105,4 @@ public class CordovaWebViewTestActivity extends Activity implements CordovaInter
             cordovaWebView.handleDestroy();
         }
     }
-}
\ No newline at end of file
+}