Updated Branches:
  refs/heads/CordovaWebView 4ce585be0 -> 2142d00bb

Added loadConfiguration to the standalone WebView


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

Branch: refs/heads/CordovaWebView
Commit: 2142d00bb964606d3c1d352a064dd33540f73611
Parents: 4ce585b
Author: Joe Bowser <bows...@apache.org>
Authored: Tue May 8 15:43:42 2012 -0700
Committer: Joe Bowser <bows...@apache.org>
Committed: Tue May 8 15:43:42 2012 -0700

----------------------------------------------------------------------
 .../src/org/apache/cordova/CordovaWebView.java     |    6 ++++++
 1 files changed, 6 insertions(+), 0 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-cordova-android/blob/2142d00b/framework/src/org/apache/cordova/CordovaWebView.java
----------------------------------------------------------------------
diff --git a/framework/src/org/apache/cordova/CordovaWebView.java 
b/framework/src/org/apache/cordova/CordovaWebView.java
index b9ea21e..46d1f31 100644
--- a/framework/src/org/apache/cordova/CordovaWebView.java
+++ b/framework/src/org/apache/cordova/CordovaWebView.java
@@ -84,12 +84,16 @@ public class CordovaWebView extends WebView {
   public CordovaWebView(Context context, AttributeSet attrs) {
     super(context, attrs);
     mCtx = context;
+    preferences = new PreferenceSet();
+    loadConfiguration();
     setup();
   }
   
   public CordovaWebView(Context context, AttributeSet attrs, int defStyle) {
     super(context, attrs, defStyle);
     mCtx = context;
+    preferences = new PreferenceSet();
+    loadConfiguration();
     setup();
   }
   
@@ -97,6 +101,8 @@ public class CordovaWebView extends WebView {
       boolean privateBrowsing) {
     super(context, attrs, defStyle, privateBrowsing);
     mCtx = context;
+    preferences = new PreferenceSet();
+    loadConfiguration();
     setup();
   }
   

Reply via email to