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

Unified Diff: content/common/android/address_parser.h

Issue 102593002: Convert string16 to base::string16 in content. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 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 | « content/child/webmessageportchannel_impl.cc ('k') | content/common/android/address_parser.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/common/android/address_parser.h
diff --git a/content/common/android/address_parser.h b/content/common/android/address_parser.h
index 71a3aba77d4a9dc121e42fa78d0539a31a1146c9..1a12a32c14d3a947cb84932cf533819be00e2945 100644
--- a/content/common/android/address_parser.h
+++ b/content/common/android/address_parser.h
@@ -17,14 +17,14 @@ namespace address_parser {
// Find the first address in some chunk of text. If an address is found in
// |text| true is returned and the address is copied into |address|.
// Otherwise, false is returned.
-bool FindAddress(const string16& text, string16* address);
+bool FindAddress(const base::string16& text, base::string16* address);
// Find the first address in some chunk of test. |begin| is the starting
// position to search from, |end| is the position to search to. |start_pos|
// and |end_pos| are set to the starting and ending position of the address,
// if found.
-CONTENT_EXPORT bool FindAddress(const string16::const_iterator& begin,
- const string16::const_iterator& end,
+CONTENT_EXPORT bool FindAddress(const base::string16::const_iterator& begin,
+ const base::string16::const_iterator& end,
size_t* start_pos,
size_t* end_pos);
« no previous file with comments | « content/child/webmessageportchannel_impl.cc ('k') | content/common/android/address_parser.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698