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

Unified Diff: content/common/indexed_db/indexed_db_key.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.h ('k') | content/common/indexed_db/indexed_db_key_path.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.cc
diff --git a/content/common/indexed_db/indexed_db_key.cc b/content/common/indexed_db/indexed_db_key.cc
index 71ddd6aa83ad624b29027fdf7dead3e3fc4ee2fc..02610bfe2413adc5563ed1e9610c7d4d41e6c05e 100644
--- a/content/common/indexed_db/indexed_db_key.cc
+++ b/content/common/indexed_db/indexed_db_key.cc
@@ -76,11 +76,11 @@ IndexedDBKey::IndexedDBKey(const std::string& key)
size_estimate_(kOverheadSize +
(key.length() * sizeof(std::string::value_type))) {}
-IndexedDBKey::IndexedDBKey(const string16& key)
+IndexedDBKey::IndexedDBKey(const base::string16& key)
: type_(WebIDBKeyTypeString),
string_(key),
size_estimate_(kOverheadSize +
- (key.length() * sizeof(string16::value_type))) {}
+ (key.length() * sizeof(base::string16::value_type))) {}
IndexedDBKey::~IndexedDBKey() {}
« no previous file with comments | « content/common/indexed_db/indexed_db_key.h ('k') | content/common/indexed_db/indexed_db_key_path.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698