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

Unified Diff: google_apis/gaia/oauth2_mint_token_flow_unittest.cc

Issue 112963005: Update uses of UTF conversions in courgette/, device/, extensions/, google_apis/, gpu/, ipc/, media… (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 | « google_apis/gaia/oauth2_mint_token_flow.cc ('k') | gpu/config/gpu_dx_diagnostics_win.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: google_apis/gaia/oauth2_mint_token_flow_unittest.cc
diff --git a/google_apis/gaia/oauth2_mint_token_flow_unittest.cc b/google_apis/gaia/oauth2_mint_token_flow_unittest.cc
index 8632f564cecba5a05dddc68d2251e0ebcb753fba..8fd359f8d5020cf77360287fb2e9fb9317af2a6a 100644
--- a/google_apis/gaia/oauth2_mint_token_flow_unittest.cc
+++ b/google_apis/gaia/oauth2_mint_token_flow_unittest.cc
@@ -111,13 +111,13 @@ std::vector<std::string> CreateTestScopes() {
static IssueAdviceInfo CreateIssueAdvice() {
IssueAdviceInfo ia;
IssueAdviceInfoEntry e1;
- e1.description = ASCIIToUTF16("Manage your calendars");
- e1.details.push_back(ASCIIToUTF16("View and manage your calendars"));
+ e1.description = base::ASCIIToUTF16("Manage your calendars");
+ e1.details.push_back(base::ASCIIToUTF16("View and manage your calendars"));
ia.push_back(e1);
IssueAdviceInfoEntry e2;
- e2.description = ASCIIToUTF16("Manage your documents");
- e2.details.push_back(ASCIIToUTF16("View your documents"));
- e2.details.push_back(ASCIIToUTF16("Upload new documents"));
+ e2.description = base::ASCIIToUTF16("Manage your documents");
+ e2.details.push_back(base::ASCIIToUTF16("View your documents"));
+ e2.details.push_back(base::ASCIIToUTF16("Upload new documents"));
ia.push_back(e2);
return ia;
}
« no previous file with comments | « google_apis/gaia/oauth2_mint_token_flow.cc ('k') | gpu/config/gpu_dx_diagnostics_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698