Index: chrome/browser/resources/history/history.js |
=================================================================== |
--- chrome/browser/resources/history/history.js (revision 216076) |
+++ chrome/browser/resources/history/history.js (working copy) |
@@ -87,6 +87,7 @@ |
this.model_ = model; |
this.title_ = result.title; |
this.url_ = result.url; |
+ this.displayableDomain_ = result.displayableDomain; |
this.starred_ = result.starred; |
this.snippet_ = result.snippet || ''; |
@@ -176,7 +177,7 @@ |
menu.dataset.devicename = self.deviceName; |
menu.dataset.devicetype = self.deviceType; |
}; |
- domain.textContent = this.getDomainFromURL_(this.url_); |
brettw
2013/08/21 21:54:48
It seems like we should be updating every place wh
|
+ domain.textContent = this.displayableDomain_; |
entryBox.appendChild(time); |