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

Unified Diff: chrome/browser/shell_integration_linux_unittest.cc

Issue 120983002: 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
« no previous file with comments | « chrome/browser/shell_integration_linux.cc ('k') | chrome/browser/shell_integration_win.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/shell_integration_linux_unittest.cc
diff --git a/chrome/browser/shell_integration_linux_unittest.cc b/chrome/browser/shell_integration_linux_unittest.cc
index b595e364a58dffc881d98951c8e9cdce1187d54f..3bb6ba4935cadbd5ae9048e8eff4bee526727872 100644
--- a/chrome/browser/shell_integration_linux_unittest.cc
+++ b/chrome/browser/shell_integration_linux_unittest.cc
@@ -573,7 +573,7 @@ TEST(ShellIntegrationTest, GetDesktopFileContents) {
GURL(test_cases[i].url),
std::string(),
base::FilePath(),
- ASCIIToUTF16(test_cases[i].title),
+ base::ASCIIToUTF16(test_cases[i].title),
test_cases[i].icon_name,
base::FilePath(),
test_cases[i].nodisplay));
@@ -618,7 +618,7 @@ TEST(ShellIntegrationTest, GetDirectoryFileContents) {
EXPECT_EQ(
test_cases[i].expected_output,
ShellIntegrationLinux::GetDirectoryFileContents(
- ASCIIToUTF16(test_cases[i].title),
+ base::ASCIIToUTF16(test_cases[i].title),
test_cases[i].icon_name));
}
}
« no previous file with comments | « chrome/browser/shell_integration_linux.cc ('k') | chrome/browser/shell_integration_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698