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

Unified Diff: content/renderer/android/email_detector.cc

Issue 121033002: Update uses of UTF conversions in content/ to use the base:: namespace. (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/renderer/android/address_detector.cc ('k') | content/renderer/android/email_detector_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/renderer/android/email_detector.cc
diff --git a/content/renderer/android/email_detector.cc b/content/renderer/android/email_detector.cc
index dba1f4245c729851731347bcd11f8afabce8e5da..1c335ee117b243234658905f8d8351283057d4ff 100644
--- a/content/renderer/android/email_detector.cc
+++ b/content/renderer/android/email_detector.cc
@@ -63,7 +63,8 @@ bool EmailDetector::FindContent(const base::string16::const_iterator& begin,
DCHECK(U_SUCCESS(status));
icu::UnicodeString content_ustr(matcher->group(status));
DCHECK(U_SUCCESS(status));
- UTF16ToUTF8(content_ustr.getBuffer(), content_ustr.length(), content_text);
+ base::UTF16ToUTF8(content_ustr.getBuffer(), content_ustr.length(),
+ content_text);
return true;
}
« no previous file with comments | « content/renderer/android/address_detector.cc ('k') | content/renderer/android/email_detector_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698