diff options
author | tfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-01-20 00:24:36 +0000 |
---|---|---|
committer | tfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-01-20 00:24:36 +0000 |
commit | 75d78246ad3bff129539b8259e7b35f2d49117a8 (patch) | |
tree | 9a96830b5046cff95d1aa57ed7187dc39494db0a /views | |
parent | f6ab5725d4fb9b8eac2f39f54308148388d5cfa3 (diff) | |
download | chromium_src-75d78246ad3bff129539b8259e7b35f2d49117a8.zip chromium_src-75d78246ad3bff129539b8259e7b35f2d49117a8.tar.gz chromium_src-75d78246ad3bff129539b8259e7b35f2d49117a8.tar.bz2 |
Move BiDiLineIterator to base/i18n/ directory.
BUG=23581
TEST=trybots
Review URL: http://codereview.chromium.org/6249007
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@71884 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'views')
-rw-r--r-- | views/view_text_utils.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/views/view_text_utils.cc b/views/view_text_utils.cc index cde347c..7aa9568 100644 --- a/views/view_text_utils.cc +++ b/views/view_text_utils.cc @@ -1,10 +1,10 @@ -// Copyright (c) 2010 The Chromium Authors. All rights reserved. +// Copyright (c) 2011 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "views/view_text_utils.h" -#include "app/bidi_line_iterator.h" +#include "base/i18n/bidi_line_iterator.h" #include "base/i18n/break_iterator.h" #include "base/logging.h" #include "base/utf_string_conversions.h" @@ -31,7 +31,7 @@ void DrawTextAndPositionUrl(gfx::Canvas* canvas, // 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; + base::i18n::BiDiLineIterator bidi_line; if (!bidi_line.Open(WideToUTF16Hack(text), true, false)) return; |