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

Unified Diff: content/browser/indexed_db/indexed_db_index_writer.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
Index: content/browser/indexed_db/indexed_db_index_writer.cc
diff --git a/content/browser/indexed_db/indexed_db_index_writer.cc b/content/browser/indexed_db/indexed_db_index_writer.cc
index 3b36cad0ec9355a71580774d354614d356f3674d..1c2ac0ab5a1b6ce62ba7eadc20fb6003676bf55e 100644
--- a/content/browser/indexed_db/indexed_db_index_writer.cc
+++ b/content/browser/indexed_db/indexed_db_index_writer.cc
@@ -34,7 +34,7 @@ bool IndexWriter::VerifyIndexKeys(
int64 index_id,
bool* can_add_keys,
const IndexedDBKey& primary_key,
- string16* error_message) const {
+ base::string16* error_message) const {
*can_add_keys = false;
for (size_t i = 0; i < index_keys_.size(); ++i) {
bool ok = AddingKeyAllowed(backing_store,
@@ -122,7 +122,7 @@ bool MakeIndexWriters(
const std::vector<int64>& index_ids,
const std::vector<IndexedDBDatabase::IndexKeys>& index_keys,
ScopedVector<IndexWriter>* index_writers,
- string16* error_message,
+ base::string16* error_message,
bool* completed) {
DCHECK_EQ(index_ids.size(), index_keys.size());
*completed = false;
« no previous file with comments | « content/browser/indexed_db/indexed_db_index_writer.h ('k') | content/browser/indexed_db/indexed_db_leveldb_coding.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698