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

Unified Diff: components/webdata/encryptor/encryptor_win.cc

Issue 112433004: Update uses of UTF conversions in chrome_frame/, chromeos/, components/ 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 | « components/webdata/encryptor/encryptor_unittest.cc ('k') | components/wifi/wifi_service_win.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/webdata/encryptor/encryptor_win.cc
diff --git a/components/webdata/encryptor/encryptor_win.cc b/components/webdata/encryptor/encryptor_win.cc
index adf792ff3261182a1a479104d448746cf443c21d..f7afa5ddeda86aef49e82e8288673201efbf3f39 100644
--- a/components/webdata/encryptor/encryptor_win.cc
+++ b/components/webdata/encryptor/encryptor_win.cc
@@ -12,7 +12,7 @@
bool Encryptor::EncryptString16(const base::string16& plaintext,
std::string* ciphertext) {
- return EncryptString(UTF16ToUTF8(plaintext), ciphertext);
+ return EncryptString(base::UTF16ToUTF8(plaintext), ciphertext);
}
bool Encryptor::DecryptString16(const std::string& ciphertext,
@@ -21,7 +21,7 @@ bool Encryptor::DecryptString16(const std::string& ciphertext,
if (!DecryptString(ciphertext, &utf8))
return false;
- *plaintext = UTF8ToUTF16(utf8);
+ *plaintext = base::UTF8ToUTF16(utf8);
return true;
}
« no previous file with comments | « components/webdata/encryptor/encryptor_unittest.cc ('k') | components/wifi/wifi_service_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698