| 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
|
|
|