| 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 c0d0f28456bc77dea1e830ad14939d72a9987dee..ddda700d5253401545f516bb83bb525f71e85f93 100644
|
| --- a/third_party/WebKit/Source/modules/indexeddb/IDBDatabase.h
|
| +++ b/third_party/WebKit/Source/modules/indexeddb/IDBDatabase.h
|
| @@ -28,7 +28,7 @@
|
|
|
| #include "bindings/core/v8/ActiveScriptWrappable.h"
|
| #include "bindings/core/v8/ScriptState.h"
|
| -#include "bindings/modules/v8/StringOrStringSequenceOrDOMStringList.h"
|
| +#include "bindings/modules/v8/StringOrStringSequence.h"
|
| #include "core/dom/ContextLifecycleObserver.h"
|
| #include "core/dom/DOMStringList.h"
|
| #include "modules/EventModules.h"
|
| @@ -101,11 +101,10 @@ class MODULES_EXPORT IDBDatabase final
|
| return createObjectStore(name, IDBKeyPath(options.keyPath()),
|
| options.autoIncrement(), exception_state);
|
| }
|
| - IDBTransaction* transaction(
|
| - ScriptState*,
|
| - const StringOrStringSequenceOrDOMStringList& store_names,
|
| - const String& mode,
|
| - ExceptionState&);
|
| + IDBTransaction* transaction(ScriptState*,
|
| + const StringOrStringSequence& store_names,
|
| + const String& mode,
|
| + ExceptionState&);
|
| void deleteObjectStore(const String& name, ExceptionState&);
|
| void close();
|
|
|
|
|