| Index: Source/modules/indexeddb/IDBDatabase.cpp
|
| diff --git a/Source/modules/indexeddb/IDBDatabase.cpp b/Source/modules/indexeddb/IDBDatabase.cpp
|
| index 174ee37d23e3eb1768b5c7d7d7e03f61bbc38833..2f21a18c0b8c36e36c703a35d11047cc351377c0 100644
|
| --- a/Source/modules/indexeddb/IDBDatabase.cpp
|
| +++ b/Source/modules/indexeddb/IDBDatabase.cpp
|
| @@ -203,12 +203,12 @@ IDBObjectStore* IDBDatabase::createObjectStore(const String& name, const Diction
|
| if (!options.isUndefinedOrNull()) {
|
| String keyPathString;
|
| Vector<String> keyPathArray;
|
| - if (options.get("keyPath", keyPathArray))
|
| + if (DictionaryHelper::get(options, "keyPath", keyPathArray))
|
| keyPath = IDBKeyPath(keyPathArray);
|
| else if (options.getWithUndefinedOrNullCheck("keyPath", keyPathString))
|
| keyPath = IDBKeyPath(keyPathString);
|
|
|
| - options.get("autoIncrement", autoIncrement);
|
| + DictionaryHelper::get(options, "autoIncrement", autoIncrement);
|
| }
|
|
|
| return createObjectStore(name, keyPath, autoIncrement, exceptionState);
|
|
|