Fix missing incognito tab title
Bug: 2988970
Fixed a bug where new icognito tabs often have a missing
title in the tab.
Change-Id: I1b1bff829e0c11be150678ea1aeea0bdfaa5d15a
diff --git a/src/com/android/browser/TabBar.java b/src/com/android/browser/TabBar.java
index 9d58675..26b72f7 100644
--- a/src/com/android/browser/TabBar.java
+++ b/src/com/android/browser/TabBar.java
@@ -342,6 +342,10 @@
TabViewData(Tab tab) {
mTab = tab;
+ WebView web = tab.getWebView();
+ if (web != null) {
+ setUrlAndTitle(web.getUrl(), web.getTitle());
+ }
}
void setUrlAndTitle(String url, String title) {