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

Unified Diff: chrome/common/importer/ie_importer_test_registry_overrider_win.cc

Issue 93793010: Update uses of UTF conversions in chrome/common 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/common/importer/firefox_importer_utils.cc ('k') | chrome/common/localized_error.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/common/importer/ie_importer_test_registry_overrider_win.cc
diff --git a/chrome/common/importer/ie_importer_test_registry_overrider_win.cc b/chrome/common/importer/ie_importer_test_registry_overrider_win.cc
index 552a1d7ac8966a74512dd7a97030f4f791eef7c4..e84cb6502476d378a1824a52e4cf3222445b19bc 100644
--- a/chrome/common/importer/ie_importer_test_registry_overrider_win.cc
+++ b/chrome/common/importer/ie_importer_test_registry_overrider_win.cc
@@ -30,7 +30,7 @@ bool GetTestKeyFromEnvironment(base::string16* key) {
std::string value;
bool result = env->GetVar(kTestHKCUOverrideEnvironmentVariable, &value);
if (result)
- *key = UTF8ToUTF16(value);
+ *key = base::UTF8ToUTF16(value);
return result;
}
@@ -41,12 +41,12 @@ bool GetTestKeyFromEnvironment(base::string16* key) {
IEImporterTestRegistryOverrider::IEImporterTestRegistryOverrider()
: temporary_key_(kTestHKCUOverrideKeyPrefix +
- UTF8ToUTF16(base::GenerateGUID())) {
+ base::UTF8ToUTF16(base::GenerateGUID())) {
DCHECK(!GetTestKeyFromEnvironment(NULL));
scoped_ptr<base::Environment> env(base::Environment::Create());
bool success = env->SetVar(kTestHKCUOverrideEnvironmentVariable,
- UTF16ToUTF8(temporary_key_));
+ base::UTF16ToUTF8(temporary_key_));
DCHECK(success);
}
« no previous file with comments | « chrome/common/importer/firefox_importer_utils.cc ('k') | chrome/common/localized_error.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698