Reload page on network connectivity
This change will auto reload the page that failed to load due
to network connectivity problem when the network becomes
available.
Change-Id: I85e5ddce48f95c398959a2e64141c87e4c83e0ca
diff --git a/src/com/android/browser/Tab.java b/src/com/android/browser/Tab.java
index 107ab07..c4260da 100644
--- a/src/com/android/browser/Tab.java
+++ b/src/com/android/browser/Tab.java
@@ -357,6 +357,12 @@
}
}
+ public void setNetworkAvailable(boolean networkUp) {
+ if (networkUp && mReceivedError && (mMainView != null)) {
+ mMainView.reload();
+ }
+ }
+
// -------------------------------------------------------------------------
// WebViewClient implementation for the main WebView
// -------------------------------------------------------------------------