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

Unified Diff: chrome/browser/ui/cocoa/profile_signin_confirmation_view_controller_browsertest.mm

Issue 112913004: Update some uses of UTF conversions in chrome/browser 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
Index: chrome/browser/ui/cocoa/profile_signin_confirmation_view_controller_browsertest.mm
diff --git a/chrome/browser/ui/cocoa/profile_signin_confirmation_view_controller_browsertest.mm b/chrome/browser/ui/cocoa/profile_signin_confirmation_view_controller_browsertest.mm
index d477090ece7d9303e22d7e5cde9c4f34b9a6ebae..73dbaa3ea03f884e367ec37bcb1bc927ecba1bfc 100644
--- a/chrome/browser/ui/cocoa/profile_signin_confirmation_view_controller_browsertest.mm
+++ b/chrome/browser/ui/cocoa/profile_signin_confirmation_view_controller_browsertest.mm
@@ -165,7 +165,7 @@ IN_PROC_BROWSER_TEST_F(ProfileSigninConfirmationViewControllerTest,
NSString* explanationWithoutCreateProfile = base::SysUTF16ToNSString(
l10n_util::GetStringFUTF16(
IDS_ENTERPRISE_SIGNIN_EXPLANATION_WITHOUT_PROFILE_CREATION_NEW_STYLE,
- UTF8ToUTF16(username()), learn_more()));
+ base::UTF8ToUTF16(username()), learn_more()));
EXPECT_NSEQ(explanationWithoutCreateProfile,
[[[controller_ explanationField] textStorage] string]);
}
@@ -180,7 +180,7 @@ IN_PROC_BROWSER_TEST_F(ProfileSigninConfirmationViewControllerTest,
NSString* explanationWithCreateProfile = base::SysUTF16ToNSString(
l10n_util::GetStringFUTF16(
IDS_ENTERPRISE_SIGNIN_EXPLANATION_WITH_PROFILE_CREATION_NEW_STYLE,
- UTF8ToUTF16(username()), learn_more()));
+ base::UTF8ToUTF16(username()), learn_more()));
EXPECT_NSEQ(explanationWithCreateProfile,
[[[controller_ explanationField] textStorage] string]);
}

Powered by Google App Engine
This is Rietveld 408576698