| 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 ab3b312c1e3d3541ab3a8700e9c5f4b898cbf22c..2be8a7960a577bb771862f147076b865ef943e46 100644
|
| --- a/chrome/browser/tab_contents/render_view_context_menu.cc
|
| +++ b/chrome/browser/tab_contents/render_view_context_menu.cc
|
| @@ -89,10 +89,10 @@
|
| #include "third_party/WebKit/public/web/WebPluginAction.h"
|
| #include "ui/base/clipboard/clipboard.h"
|
| #include "ui/base/l10n/l10n_util.h"
|
| -#include "ui/base/text/text_elider.h"
|
| #include "ui/gfx/favicon_size.h"
|
| #include "ui/gfx/point.h"
|
| #include "ui/gfx/size.h"
|
| +#include "ui/gfx/text_elider.h"
|
|
|
| #if defined(ENABLE_PRINTING)
|
| #include "chrome/common/print_messages.h"
|
| @@ -2032,7 +2032,7 @@ bool RenderViewContextMenu::IsDevCommandEnabled(int id) const {
|
| }
|
|
|
| string16 RenderViewContextMenu::PrintableSelectionText() {
|
| - return ui::TruncateString(params_.selection_text,
|
| + return gfx::TruncateString(params_.selection_text,
|
| kMaxSelectionTextLength);
|
| }
|
|
|
|
|