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

Unified Diff: content/browser/indexed_db/indexed_db_fake_backing_store.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_fake_backing_store.cc
diff --git a/content/browser/indexed_db/indexed_db_fake_backing_store.cc b/content/browser/indexed_db/indexed_db_fake_backing_store.cc
index 8766162604bbad52681c75241e6762154355be8b..38259821abbdc5c4ff13b57a16ed2af8658c6e32 100644
--- a/content/browser/indexed_db/indexed_db_fake_backing_store.cc
+++ b/content/browser/indexed_db/indexed_db_fake_backing_store.cc
@@ -10,19 +10,19 @@ namespace content {
IndexedDBFakeBackingStore::~IndexedDBFakeBackingStore() {}
-std::vector<string16> IndexedDBFakeBackingStore::GetDatabaseNames() {
- return std::vector<string16>();
+std::vector<base::string16> IndexedDBFakeBackingStore::GetDatabaseNames() {
+ return std::vector<base::string16>();
}
bool IndexedDBFakeBackingStore::GetIDBDatabaseMetaData(
- const string16& name,
+ const base::string16& name,
IndexedDBDatabaseMetadata*,
bool* found) {
return true;
}
bool IndexedDBFakeBackingStore::CreateIDBDatabaseMetaData(
- const string16& name,
- const string16& version,
+ const base::string16& name,
+ const base::string16& version,
int64 int_version,
int64* row_id) {
return true;
@@ -32,14 +32,14 @@ bool IndexedDBFakeBackingStore::UpdateIDBDatabaseIntVersion(Transaction*,
int64 version) {
return false;
}
-bool IndexedDBFakeBackingStore::DeleteDatabase(const string16& name) {
+bool IndexedDBFakeBackingStore::DeleteDatabase(const base::string16& name) {
return true;
}
bool IndexedDBFakeBackingStore::CreateObjectStore(Transaction*,
int64 database_id,
int64 object_store_id,
- const string16& name,
+ const base::string16& name,
const IndexedDBKeyPath&,
bool auto_increment) {
return false;
@@ -85,7 +85,7 @@ bool IndexedDBFakeBackingStore::CreateIndex(Transaction*,
int64 database_id,
int64 object_store_id,
int64 index_id,
- const string16& name,
+ const base::string16& name,
const IndexedDBKeyPath&,
bool is_unique,
bool is_multi_entry) {
« no previous file with comments | « content/browser/indexed_db/indexed_db_fake_backing_store.h ('k') | content/browser/indexed_db/indexed_db_index_writer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698