| Index: chrome/browser/tab_contents/render_view_context_menu.cc
|
| diff --git a/chrome/browser/tab_contents/render_view_context_menu.cc b/chrome/browser/tab_contents/render_view_context_menu.cc
|
| index bd9e069770e722e9c52aa74ceb0bea8df33f2cc6..41be22ccaca4bbda7432458ea924ae306cc28726 100644
|
| --- a/chrome/browser/tab_contents/render_view_context_menu.cc
|
| +++ b/chrome/browser/tab_contents/render_view_context_menu.cc
|
| @@ -65,6 +65,7 @@
|
| #include "third_party/WebKit/Source/WebKit/chromium/public/WebContextMenuData.h"
|
| #include "third_party/WebKit/Source/WebKit/chromium/public/WebMediaPlayerAction.h"
|
| #include "ui/base/l10n/l10n_util.h"
|
| +#include "ui/base/text/text_elider.h"
|
| #include "ui/gfx/favicon_size.h"
|
| #include "webkit/glue/webmenuitem.h"
|
|
|
| @@ -1788,8 +1789,8 @@ bool RenderViewContextMenu::IsDevCommandEnabled(int id) const {
|
| }
|
|
|
| string16 RenderViewContextMenu::PrintableSelectionText() {
|
| - return l10n_util::TruncateString(params_.selection_text,
|
| - kMaxSelectionTextLength);
|
| + return ui::TruncateString(params_.selection_text,
|
| + kMaxSelectionTextLength);
|
| }
|
|
|
| // Controller functions --------------------------------------------------------
|
|
|