| Index: third_party/WebKit/Source/modules/indexeddb/InspectorIndexedDBAgent.cpp
|
| diff --git a/third_party/WebKit/Source/modules/indexeddb/InspectorIndexedDBAgent.cpp b/third_party/WebKit/Source/modules/indexeddb/InspectorIndexedDBAgent.cpp
|
| index 5a6054e70c66ea17a86c2857918c9209c0b51334..45da6bcac5d04d287ddca43c439ae5fa6e9550ad 100644
|
| --- a/third_party/WebKit/Source/modules/indexeddb/InspectorIndexedDBAgent.cpp
|
| +++ b/third_party/WebKit/Source/modules/indexeddb/InspectorIndexedDBAgent.cpp
|
| @@ -343,14 +343,14 @@ class DatabaseLoader final : public ExecutableWithDatabase {
|
| protocol::Array<protocol::IndexedDB::ObjectStore>::create();
|
|
|
| for (const auto& storeMapEntry : databaseMetadata.objectStores) {
|
| - const IDBObjectStoreMetadata& objectStoreMetadata = storeMapEntry.value;
|
| + const IDBObjectStoreMetadata& objectStoreMetadata = *storeMapEntry.value;
|
|
|
| std::unique_ptr<protocol::Array<protocol::IndexedDB::ObjectStoreIndex>>
|
| indexes =
|
| protocol::Array<protocol::IndexedDB::ObjectStoreIndex>::create();
|
|
|
| for (const auto& metadataMapEntry : objectStoreMetadata.indexes) {
|
| - const IDBIndexMetadata& indexMetadata = metadataMapEntry.value;
|
| + const IDBIndexMetadata& indexMetadata = *metadataMapEntry.value;
|
|
|
| std::unique_ptr<ObjectStoreIndex> objectStoreIndex =
|
| ObjectStoreIndex::create()
|
|
|