| Index: views/view_text_utils.cc
|
| ===================================================================
|
| --- views/view_text_utils.cc (revision 71854)
|
| +++ views/view_text_utils.cc (working copy)
|
| @@ -4,13 +4,13 @@
|
|
|
| #include "views/view_text_utils.h"
|
|
|
| -#include "app/bidi_line_iterator.h"
|
| #include "base/i18n/break_iterator.h"
|
| #include "base/logging.h"
|
| #include "base/utf_string_conversions.h"
|
| #include "gfx/canvas_skia.h"
|
| #include "gfx/color_utils.h"
|
| #include "gfx/size.h"
|
| +#include "ui/base/text/bidi_line_iterator.h"
|
| #include "views/controls/label.h"
|
| #include "views/controls/link.h"
|
|
|
| @@ -31,7 +31,7 @@
|
| // a run is a sequence of words that share the same directionality. We
|
| // initialize a bidirectional ICU line iterator and split the text into
|
| // runs that are either strictly LTR or strictly RTL, with no mix.
|
| - BiDiLineIterator bidi_line;
|
| + ui::BiDiLineIterator bidi_line;
|
| if (!bidi_line.Open(WideToUTF16Hack(text), true, false))
|
| return;
|
|
|
|
|