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

Unified Diff: components/autofill/core/browser/webdata/autofill_entry_unittest.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/webdata/autofill_entry_unittest.cc
diff --git a/components/autofill/core/browser/webdata/autofill_entry_unittest.cc b/components/autofill/core/browser/webdata/autofill_entry_unittest.cc
index bef7d578cbfbb6cfeb9ba9ba7c697e7af0b63541..9679ccffd7bb142913805b07c3d0f1b9caaec35b 100644
--- a/components/autofill/core/browser/webdata/autofill_entry_unittest.cc
+++ b/components/autofill/core/browser/webdata/autofill_entry_unittest.cc
@@ -56,7 +56,8 @@ TEST(AutofillEntryTest, CullByTime) {
// Within the time limit.
timestamps.push_back(cutoff_time + one_hour);
- AutofillKey key(UTF8ToUTF16("test_key"), UTF8ToUTF16("test_value"));
+ AutofillKey key(base::UTF8ToUTF16("test_key"),
+ base::UTF8ToUTF16("test_value"));
AutofillEntry entry_within_the_limits(key, timestamps);
EXPECT_FALSE(entry_within_the_limits.IsExpired());
« no previous file with comments | « components/autofill/core/browser/webdata/autofill_entry.cc ('k') | components/autofill/core/browser/webdata/autofill_table.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698