You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by bo...@apache.org on 2014/05/01 00:10:05 UTC

android commit: Outsmarted by vim, needed Eclipse to clean this up

Repository: cordova-android
Updated Branches:
  refs/heads/pluggable_webview 105ccc81a -> 04b3fc026


Outsmarted by vim, needed Eclipse to clean this up


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

Branch: refs/heads/pluggable_webview
Commit: 04b3fc0268c29d4e6f1112eb9ce3145ef7f65997
Parents: 105ccc8
Author: Joe Bowser <bo...@apache.org>
Authored: Wed Apr 30 15:09:54 2014 -0700
Committer: Joe Bowser <bo...@apache.org>
Committed: Wed Apr 30 15:09:54 2014 -0700

----------------------------------------------------------------------
 .../src/org/apache/cordova/AndroidWebView.java  | 39 ++------------------
 1 file changed, 3 insertions(+), 36 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-android/blob/04b3fc02/framework/src/org/apache/cordova/AndroidWebView.java
----------------------------------------------------------------------
diff --git a/framework/src/org/apache/cordova/AndroidWebView.java b/framework/src/org/apache/cordova/AndroidWebView.java
index 9b464b5..9033162 100755
--- a/framework/src/org/apache/cordova/AndroidWebView.java
+++ b/framework/src/org/apache/cordova/AndroidWebView.java
@@ -166,11 +166,7 @@ public class AndroidWebView extends WebView implements CordovaWebView {
         {
             Log.d(TAG, "Your activity must implement CordovaInterface to work");
         }
-<<<<<<< HEAD
-        this.setWebChromeClient(this.makeChromeClient());
-        this.initWebViewClient(this.cordova);
-=======
->>>>>>> df05f3a3c07c0630c3d598409289db7a8f3c87e3
+        this.setWebChromeClient(this.makeWebChromeClient());
         this.loadConfiguration();
         this.setup();
     }
@@ -193,10 +189,7 @@ public class AndroidWebView extends WebView implements CordovaWebView {
         {
             Log.d(TAG, "Your activity must implement CordovaInterface to work");
         }
-<<<<<<< HEAD
-        this.setWebChromeClient(this.makeChromeClient());
-=======
->>>>>>> df05f3a3c07c0630c3d598409289db7a8f3c87e3
+        this.setWebChromeClient(this.makeWebChromeClient());
         this.loadConfiguration();
         this.setup();
     }
@@ -220,22 +213,12 @@ public class AndroidWebView extends WebView implements CordovaWebView {
         {
             Log.d(TAG, "Your activity must implement CordovaInterface to work");
         }
-<<<<<<< HEAD
-        this.setWebChromeClient(this.makeChromeClient());
-        this.initWebViewClient(this.cordova);
-=======
->>>>>>> df05f3a3c07c0630c3d598409289db7a8f3c87e3
+        this.setWebChromeClient(this.makeWebChromeClient());
         this.loadConfiguration();
         this.setup();
     }
 
     /**
-<<<<<<< HEAD
-     * set the WebViewClient, but provide special case handling for IceCreamSandwich.
-     */
-    private void initWebViewClient(CordovaInterface cordova) {
-        this.setWebViewClient(this.makeWebViewClient());
-=======
      * Create a default WebViewClient object for this webview. This can be overridden by the
      * main application's CordovaActivity subclass.
      *
@@ -262,7 +245,6 @@ public class AndroidWebView extends WebView implements CordovaWebView {
     @Override
     public CordovaChromeClient makeWebChromeClient() {
         return (CordovaChromeClient) new AndroidChromeClient(this.cordova);
->>>>>>> df05f3a3c07c0630c3d598409289db7a8f3c87e3
     }
 
     /**
@@ -1112,21 +1094,6 @@ public class AndroidWebView extends WebView implements CordovaWebView {
     public View getView() {
         return this;
     }
-<<<<<<< HEAD
 
-    @Override
-    public CordovaWebViewClient makeWebViewClient() {
-        if(android.os.Build.VERSION.SDK_INT < android.os.Build.VERSION_CODES.HONEYCOMB) {
-            return (CordovaWebViewClient) new AndroidWebViewClient(this.cordova, this);
-        } else {
-            return (CordovaWebViewClient) new IceCreamCordovaWebViewClient(this.cordova, this);
-        }
-    }
 
-    @Override
-    public CordovaChromeClient makeChromeClient() {
-        return (CordovaChromeClient) new AndroidChromeClient(this.cordova, this);
-    }
-=======
->>>>>>> df05f3a3c07c0630c3d598409289db7a8f3c87e3
 }