Merge change 25567 into eclair

* changes:
  The starting progress for WebView should be 100 as it is not in the loading state.
This commit is contained in:
Android (Google) Code Review
2009-09-17 17:54:11 -04:00

View File

@@ -65,7 +65,8 @@ class CallbackProxy extends Handler {
// Keep track of multiple progress updates.
private boolean mProgressUpdatePending;
// Keep track of the last progress amount.
private volatile int mLatestProgress;
// Start with 100 to indicate it is not in load for the empty page.
private volatile int mLatestProgress = 100;
// Back/Forward list
private final WebBackForwardList mBackForwardList;
// Used to call startActivity during url override.