summaryrefslogtreecommitdiffstats
path: root/src/com/android/browser/TabControl.java
diff options
context:
space:
mode:
authorJohn Reck <jreck@google.com>2010-10-26 19:01:24 -0700
committerJohn Reck <jreck@google.com>2010-10-29 17:09:25 -0700
commitfb3017ffd8aa3f2342380270cf468e3a68914e69 (patch)
tree8480ed9bae90628844de42d663af27e7a3093e46 /src/com/android/browser/TabControl.java
parentc54d328a499ec0c35f73e5cf57169541e8bf1cd3 (diff)
downloadandroid_packages_apps_Gello-fb3017ffd8aa3f2342380270cf468e3a68914e69.tar.gz
android_packages_apps_Gello-fb3017ffd8aa3f2342380270cf468e3a68914e69.tar.bz2
android_packages_apps_Gello-fb3017ffd8aa3f2342380270cf468e3a68914e69.zip
Fixes tab title not updating correctly
Bug: 3130982 Fixes the bug where the tab title would stay the same until a new title was received. Now the title changes to "Loading..." until a new title is received, or changes to the URL if the page finishes or is canceled without receiving a title. Change-Id: I667acbaeea5383b6a434c20337d404f49b947b0d
Diffstat (limited to 'src/com/android/browser/TabControl.java')
-rw-r--r--src/com/android/browser/TabControl.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/com/android/browser/TabControl.java b/src/com/android/browser/TabControl.java
index 55bfb481..fcccad1a 100644
--- a/src/com/android/browser/TabControl.java
+++ b/src/com/android/browser/TabControl.java
@@ -695,7 +695,7 @@ class TabControl {
public void onFavicon(Tab tab, Bitmap favicon);
- public void onPageStarted(Tab tab, Bitmap favicon);
+ public void onPageStarted(Tab tab, String url, Bitmap favicon);
public void onPageFinished(Tab tab);