Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(3096)

Unified Diff: views/view_text_utils.cc

Issue 5796003: Refactor WordIterator into base::BreakIterator.... (Closed) Base URL: http://src.chromium.org/svn/trunk/src/
Patch Set: '' Created 10 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/history/query_parser.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: views/view_text_utils.cc
===================================================================
--- views/view_text_utils.cc (revision 69162)
+++ views/view_text_utils.cc (working copy)
@@ -5,7 +5,7 @@
#include "views/view_text_utils.h"
#include "app/bidi_line_iterator.h"
-#include "base/i18n/word_iterator.h"
+#include "base/i18n/break_iterator.h"
#include "base/logging.h"
#include "base/utf_string_conversions.h"
#include "gfx/canvas_skia.h"
@@ -98,7 +98,7 @@
// Iterate through line breaking opportunities (which in English would be
// spaces and such). This tells us where to wrap.
string16 text16(WideToUTF16(text));
- WordIterator iter(&text16, WordIterator::BREAK_LINE);
+ base::BreakIterator iter(&text16, base::BreakIterator::BREAK_SPACE);
if (!iter.Init())
return;
@@ -112,7 +112,7 @@
// Get the word and figure out the dimensions.
std::wstring word;
if (!ltr_within_rtl)
- word = UTF16ToWide(iter.GetWord()); // Get the next word.
+ word = UTF16ToWide(iter.GetString()); // Get the next word.
else
word = text; // Draw the whole text at once.
« no previous file with comments | « chrome/browser/history/query_parser.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698