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

Unified Diff: content/browser/indexed_db/indexed_db_backing_store.h

Issue 1963293002: Replacing Indexed DB Chromium IPC with Mojo Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Some (incomplete) work on struct traits. Created 4 years, 5 months 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_backing_store.h
diff --git a/content/browser/indexed_db/indexed_db_backing_store.h b/content/browser/indexed_db/indexed_db_backing_store.h
index 286c19ac33edaf8c102df2170e46d756593a17a0..430af9ad351d580c4b26394af094af9065cf204a 100644
--- a/content/browser/indexed_db/indexed_db_backing_store.h
+++ b/content/browser/indexed_db/indexed_db_backing_store.h
@@ -427,7 +427,7 @@ class CONTENT_EXPORT IndexedDBBackingStore
const std::string& message);
leveldb::Status GetObjectStores(
int64_t database_id,
- IndexedDBDatabaseMetadata::ObjectStoreMap* map) WARN_UNUSED_RESULT;
+ std::map<int64_t, IndexedDBObjectStoreMetadata>* map) WARN_UNUSED_RESULT;
virtual leveldb::Status CreateObjectStore(
IndexedDBBackingStore::Transaction* transaction,
int64_t database_id,
@@ -621,7 +621,7 @@ class CONTENT_EXPORT IndexedDBBackingStore
bool* found);
leveldb::Status GetIndexes(int64_t database_id,
int64_t object_store_id,
- IndexedDBObjectStoreMetadata::IndexMap* map)
+ std::map<int64_t, IndexedDBIndexMetadata>* map)
WARN_UNUSED_RESULT;
// Remove the blob directory for the specified database and all contained

Powered by Google App Engine
This is Rietveld 408576698