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

Unified Diff: content/common/indexed_db/indexed_db_key_unittest.cc

Issue 113403006: Update some uses of char16 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 | « content/common/dom_storage/dom_storage_map_unittest.cc ('k') | content/common/page_state_serialization.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/common/indexed_db/indexed_db_key_unittest.cc
diff --git a/content/common/indexed_db/indexed_db_key_unittest.cc b/content/common/indexed_db/indexed_db_key_unittest.cc
index ca52cc4a134684b38b853b8c690f5659e4b62e34..b7eb11d525a93b1d541ba314db380822ed63ab61 100644
--- a/content/common/indexed_db/indexed_db_key_unittest.cc
+++ b/content/common/indexed_db/indexed_db_key_unittest.cc
@@ -32,9 +32,9 @@ TEST(IndexedDBKeyTest, KeySizeEstimates) {
keys.push_back(IndexedDBKey(date, blink::WebIDBKeyTypeDate));
estimates.push_back(static_cast<size_t>(24)); // Overhead + sizeof(double).
- const base::string16 string(1024, static_cast<char16>('X'));
+ const base::string16 string(1024, static_cast<base::char16>('X'));
keys.push_back(IndexedDBKey(string));
- // Overhead + string length * sizeof(char16).
+ // Overhead + string length * sizeof(base::char16).
estimates.push_back(static_cast<size_t>(2064));
const size_t array_size = 1024;
« no previous file with comments | « content/common/dom_storage/dom_storage_map_unittest.cc ('k') | content/common/page_state_serialization.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698