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

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

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/renderer/android/phone_number_detector.cc ('k') | content/renderer/cpp_bound_class_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/renderer/android/phone_number_detector_unittest.cc
diff --git a/content/renderer/android/phone_number_detector_unittest.cc b/content/renderer/android/phone_number_detector_unittest.cc
index 387cedec1b471edef0e7a04c0050ea8a987689ac..e248f0e451f46a9f16a5ce4710d0b4a9c24a54e2 100644
--- a/content/renderer/android/phone_number_detector_unittest.cc
+++ b/content/renderer/android/phone_number_detector_unittest.cc
@@ -13,8 +13,8 @@ class PhoneNumberDetectorTest : public testing::Test {
public:
static std::string FindNumber(const std::string& content,
const std::string& region) {
- string16 content_16 = UTF8ToUTF16(content);
- string16 result_16;
+ base::string16 content_16 = UTF8ToUTF16(content);
+ base::string16 result_16;
size_t start, end;
PhoneNumberDetector detector(region);
std::string content_text;
@@ -26,8 +26,8 @@ class PhoneNumberDetectorTest : public testing::Test {
static std::string FindAndFormatNumber(const std::string& content,
const std::string& region) {
- string16 content_16 = UTF8ToUTF16(content);
- string16 result_16;
+ base::string16 content_16 = UTF8ToUTF16(content);
+ base::string16 result_16;
size_t start, end;
PhoneNumberDetector detector(region);
std::string content_text;
« no previous file with comments | « content/renderer/android/phone_number_detector.cc ('k') | content/renderer/cpp_bound_class_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698