| Index: third_party/WebKit/Source/modules/indexeddb/IDBDatabase.h
|
| diff --git a/third_party/WebKit/Source/modules/indexeddb/IDBDatabase.h b/third_party/WebKit/Source/modules/indexeddb/IDBDatabase.h
|
| index 34711d9243cbaac43733b0cb3fdfaacefeaa53b3..64d566a3b653f67506659fcfa8826216bf0a3d76 100644
|
| --- a/third_party/WebKit/Source/modules/indexeddb/IDBDatabase.h
|
| +++ b/third_party/WebKit/Source/modules/indexeddb/IDBDatabase.h
|
| @@ -78,7 +78,7 @@ public:
|
| DOMStringList* objectStoreNames() const;
|
|
|
| IDBObjectStore* createObjectStore(const String& name, const IDBObjectStoreParameters& options, ExceptionState& exceptionState) { return createObjectStore(name, IDBKeyPath(options.keyPath()), options.autoIncrement(), exceptionState); }
|
| - IDBTransaction* transaction(ScriptState*, const StringOrStringSequenceOrDOMStringList&, const String& mode, ExceptionState&);
|
| + IDBTransaction* transaction(ScriptState*, const StringOrStringSequenceOrDOMStringList& storeNames, const String& mode, ExceptionState&);
|
| void deleteObjectStore(const String& name, ExceptionState&);
|
| void close();
|
|
|
|
|