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