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

Unified Diff: content/browser/dom_storage/session_storage_database_unittest.cc

Issue 121033002: Update uses of UTF conversions in content/ 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: content/browser/dom_storage/session_storage_database_unittest.cc
diff --git a/content/browser/dom_storage/session_storage_database_unittest.cc b/content/browser/dom_storage/session_storage_database_unittest.cc
index 2f86c3b99180e958995f51eb17148b6cd7a52499..414fbe6de33dac900d69d403d65d51d0b9736c99 100644
--- a/content/browser/dom_storage/session_storage_database_unittest.cc
+++ b/content/browser/dom_storage/session_storage_database_unittest.cc
@@ -87,13 +87,13 @@ SessionStorageDatabaseTest::SessionStorageDatabaseTest()
kNamespace1("namespace1"),
kNamespace2("namespace2"),
kNamespaceClone("wascloned"),
- kKey1(ASCIIToUTF16("key1")),
- kKey2(ASCIIToUTF16("key2")),
- kKey3(ASCIIToUTF16("key3")),
- kValue1(ASCIIToUTF16("value1"), false),
- kValue2(ASCIIToUTF16("value2"), false),
- kValue3(ASCIIToUTF16("value3"), false),
- kValue4(ASCIIToUTF16("value4"), false) { }
+ kKey1(base::ASCIIToUTF16("key1")),
+ kKey2(base::ASCIIToUTF16("key2")),
+ kKey3(base::ASCIIToUTF16("key3")),
+ kValue1(base::ASCIIToUTF16("value1"), false),
+ kValue2(base::ASCIIToUTF16("value2"), false),
+ kValue3(base::ASCIIToUTF16("value3"), false),
+ kValue4(base::ASCIIToUTF16("value4"), false) { }
SessionStorageDatabaseTest::~SessionStorageDatabaseTest() { }
« no previous file with comments | « content/browser/dom_storage/session_storage_database.cc ('k') | content/browser/download/download_item_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698