You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by ag...@apache.org on 2014/07/10 16:30:40 UTC

[06/11] android commit: Add back CordovaWebView.getUrl() - needed by tests & does make sense to have

Add back CordovaWebView.getUrl() - needed by tests & does make sense to have


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

Branch: refs/heads/4.0.x
Commit: 9b9c59766f2313db63f90e58afb13808e9280c59
Parents: fc2a202
Author: Andrew Grieve <ag...@chromium.org>
Authored: Thu Jul 10 10:15:34 2014 -0400
Committer: Andrew Grieve <ag...@chromium.org>
Committed: Thu Jul 10 10:15:34 2014 -0400

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


http://git-wip-us.apache.org/repos/asf/cordova-android/blob/9b9c5976/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 366acff..213e062 100644
--- a/framework/src/org/apache/cordova/CordovaWebView.java
+++ b/framework/src/org/apache/cordova/CordovaWebView.java
@@ -87,6 +87,8 @@ public interface CordovaWebView {
 
     void setNetworkAvailable(boolean online);
     
+    String getUrl();
+
     // TODO: Work on deleting these by removing refs from plugins.
     Context getContext();
     void loadUrl(String url);