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

Unified Diff: app/bidi_line_iterator.h

Issue 6315002: Some wstring -> string16 conversion in src/app. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/app
Patch Set: rebase Created 9 years, 11 months 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 | « app/app_base.gypi ('k') | app/bidi_line_iterator.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: app/bidi_line_iterator.h
diff --git a/app/bidi_line_iterator.h b/app/bidi_line_iterator.h
index 178d775f2439bf017f30ffd89b032277fe7c3c68..a4faa2f8dbee08a224c41ff241e45f1e883eb7e4 100644
--- a/app/bidi_line_iterator.h
+++ b/app/bidi_line_iterator.h
@@ -11,6 +11,7 @@
#include "unicode/ubidi.h"
#include "base/basictypes.h"
+#include "base/string16.h"
// A simple wrapper class for the bidirectional iterator of ICU.
// This class uses the bidirectional iterator of ICU to split a line of
@@ -22,7 +23,7 @@ class BiDiLineIterator {
// Initializes the bidirectional iterator with the specified text. Returns
// whether initialization succeeded.
- UBool Open(const std::wstring& text, bool right_to_left, bool url);
+ UBool Open(const string16& text, bool right_to_left, bool url);
// Returns the number of visual runs in the text, or zero on error.
int CountRuns();
« no previous file with comments | « app/app_base.gypi ('k') | app/bidi_line_iterator.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698