| Index: content/browser/web_contents/navigation_entry_impl.cc
|
| diff --git a/content/browser/web_contents/navigation_entry_impl.cc b/content/browser/web_contents/navigation_entry_impl.cc
|
| index 0a8664493d0dd9edfea5c3a4d223ed8cc9ebc3e0..10d50ca0df2a540705212e9182e2231daf4bb00d 100644
|
| --- a/content/browser/web_contents/navigation_entry_impl.cc
|
| +++ b/content/browser/web_contents/navigation_entry_impl.cc
|
| @@ -10,7 +10,7 @@
|
| #include "content/public/common/content_constants.h"
|
| #include "content/public/common/url_constants.h"
|
| #include "net/base/net_util.h"
|
| -#include "ui/base/text/text_elider.h"
|
| +#include "ui/gfx/text_elider.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).
|
| @@ -191,7 +191,7 @@ const string16& NavigationEntryImpl::GetTitleForDisplay(
|
| title = title.substr(slashpos + 1);
|
| }
|
|
|
| - ui::ElideString(title, kMaxTitleChars, &cached_display_title_);
|
| + gfx::ElideString(title, kMaxTitleChars, &cached_display_title_);
|
| return cached_display_title_;
|
| }
|
|
|
|
|