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

Unified Diff: components/autofill/core/browser/autofill_test_utils.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
Index: components/autofill/core/browser/autofill_test_utils.cc
diff --git a/components/autofill/core/browser/autofill_test_utils.cc b/components/autofill/core/browser/autofill_test_utils.cc
index 6577c30b8aa180f3bad4eb5687a79751a75a5e56..0addc8738c194182a2e817937afca8bf048e7492 100644
--- a/components/autofill/core/browser/autofill_test_utils.cc
+++ b/components/autofill/core/browser/autofill_test_utils.cc
@@ -21,6 +21,8 @@
#include "components/webdata/encryptor/encryptor.h"
#include "content/public/browser/browser_context.h"
+using base::ASCIIToUTF16;
+
namespace autofill {
namespace test {
@@ -85,7 +87,7 @@ void CreateTestAddressFormData(FormData* form) {
inline void check_and_set(
FormGroup* profile, ServerFieldType type, const char* value) {
if (value)
- profile->SetRawInfo(type, UTF8ToUTF16(value));
+ profile->SetRawInfo(type, base::UTF8ToUTF16(value));
}
AutofillProfile GetFullProfile() {
« no previous file with comments | « components/autofill/core/browser/autofill_regexes_unittest.cc ('k') | components/autofill/core/browser/contact_info.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698