Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(405)

Unified Diff: third_party/WebKit/Source/modules/indexeddb/IDBDatabase.h

Issue 2840893002: IndexedDB: Remove DOMStringList special case for transaction() (Closed)
Patch Set: Remove generated files for union type from gni Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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();

Powered by Google App Engine
This is Rietveld 408576698