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

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

Issue 102593002: Convert string16 to base::string16 in content. (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/indexed_db/indexed_db_key_path.cc ('k') | content/common/indexed_db/indexed_db_messages.h » ('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 7116062548d05a7664d73e89155c93268dfbfc7c..ca52cc4a134684b38b853b8c690f5659e4b62e34 100644
--- a/content/common/indexed_db/indexed_db_key_unittest.cc
+++ b/content/common/indexed_db/indexed_db_key_unittest.cc
@@ -32,7 +32,7 @@ TEST(IndexedDBKeyTest, KeySizeEstimates) {
keys.push_back(IndexedDBKey(date, blink::WebIDBKeyTypeDate));
estimates.push_back(static_cast<size_t>(24)); // Overhead + sizeof(double).
- const string16 string(1024, static_cast<char16>('X'));
+ const base::string16 string(1024, static_cast<char16>('X'));
keys.push_back(IndexedDBKey(string));
// Overhead + string length * sizeof(char16).
estimates.push_back(static_cast<size_t>(2064));
« no previous file with comments | « content/common/indexed_db/indexed_db_key_path.cc ('k') | content/common/indexed_db/indexed_db_messages.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698