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 2012/06/21 23:05:05 UTC

[13/15] android commit: Fix imports for changes in 45680a5

Fix imports for changes in 45680a5

Commit 45680a5 had errors importing packages. This commit fix them.


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/8ff48b37
Tree: http://git-wip-us.apache.org/repos/asf/incubator-cordova-android/tree/8ff48b37
Diff: http://git-wip-us.apache.org/repos/asf/incubator-cordova-android/diff/8ff48b37

Branch: refs/heads/master
Commit: 8ff48b371e6090e0af942efdd66f32be6911d4bf
Parents: 6de66b8
Author: Juan G. Hurtado <ju...@gmail.com>
Authored: Fri May 18 08:45:39 2012 +0200
Committer: Juan G. Hurtado <ju...@gmail.com>
Committed: Fri May 18 08:48:08 2012 +0200

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


http://git-wip-us.apache.org/repos/asf/incubator-cordova-android/blob/8ff48b37/framework/src/org/apache/cordova/CordovaWebViewClient.java
----------------------------------------------------------------------
diff --git a/framework/src/org/apache/cordova/CordovaWebViewClient.java b/framework/src/org/apache/cordova/CordovaWebViewClient.java
index 7abaff5..63ea301 100755
--- a/framework/src/org/apache/cordova/CordovaWebViewClient.java
+++ b/framework/src/org/apache/cordova/CordovaWebViewClient.java
@@ -18,12 +18,17 @@
 */
 package org.apache.cordova;
 
+import java.io.IOException;
+import java.io.InputStream;
+
 import org.apache.cordova.api.LOG;
 
+import android.content.Context;
 import android.content.Intent;
 import android.content.pm.ApplicationInfo;
 import android.content.pm.PackageManager;
 import android.content.pm.PackageManager.NameNotFoundException;
+import android.content.res.AssetManager;
 import android.graphics.Bitmap;
 import android.net.Uri;
 import android.net.http.SslError;
@@ -31,6 +36,7 @@ import android.util.Log;
 import android.view.View;
 import android.webkit.HttpAuthHandler;
 import android.webkit.SslErrorHandler;
+import android.webkit.WebResourceResponse;
 import android.webkit.WebView;
 import android.webkit.WebViewClient;