diff options
Diffstat (limited to 'chrome')
-rw-r--r-- | chrome/browser/navigation_controller.cc | 4 | ||||
-rw-r--r-- | chrome/browser/navigation_entry.cc | 10 | ||||
-rw-r--r-- | chrome/browser/navigation_entry.h | 2 |
3 files changed, 8 insertions, 8 deletions
diff --git a/chrome/browser/navigation_controller.cc b/chrome/browser/navigation_controller.cc index 77d5269..51beace 100644 --- a/chrome/browser/navigation_controller.cc +++ b/chrome/browser/navigation_controller.cc @@ -491,10 +491,6 @@ NavigationEntry* NavigationController::CreateNavigationEntry( std::wstring(), transition); entry->set_display_url(url); entry->set_user_typed_url(url); - if (url.SchemeIsFile()) { - entry->set_title(file_util::GetFilenameFromPath(UTF8ToWide(url.host() + - url.path()))); - } return entry; } diff --git a/chrome/browser/navigation_entry.cc b/chrome/browser/navigation_entry.cc index f7ed6c6..18992d6 100644 --- a/chrome/browser/navigation_entry.cc +++ b/chrome/browser/navigation_entry.cc @@ -5,6 +5,7 @@ #include "chrome/browser/navigation_entry.h" #include "chrome/common/resource_bundle.h" +#include "net/base/escape.h" // Use this to get a new unique ID for a NavigationEntry during construction. // The returned ID is guaranteed to be nonzero (which is the "no ID" indicator). @@ -58,7 +59,12 @@ NavigationEntry::NavigationEntry(TabContentsType type, } const std::wstring& NavigationEntry::GetTitleForDisplay() { - if (title_.empty()) - return url_as_string_; + if (title_.empty()) { + std::string filename = url_.ExtractFileName(); + title_ = UTF8ToWide(filename.empty() ? + url_.spec() : + UnescapeURLComponent(filename, UnescapeRule::SPACES | + UnescapeRule::URL_SPECIAL_CHARS)); + } return title_; }
\ No newline at end of file diff --git a/chrome/browser/navigation_entry.h b/chrome/browser/navigation_entry.h index f5ab7f6..4b21f9f 100644 --- a/chrome/browser/navigation_entry.h +++ b/chrome/browser/navigation_entry.h @@ -220,7 +220,6 @@ class NavigationEntry { // the user. void set_url(const GURL& url) { url_ = url; - url_as_string_ = UTF8ToWide(url_.spec()); } const GURL& url() const { return url_; @@ -373,7 +372,6 @@ class NavigationEntry { GURL url_; GURL referrer_; - std::wstring url_as_string_; GURL display_url_; std::wstring title_; FaviconStatus favicon_; |