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

Unified Diff: third_party/WebKit/Source/modules/indexeddb/InspectorIndexedDBAgent.cpp

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
« no previous file with comments | « third_party/WebKit/Source/modules/indexeddb/IDBDatabase.idl ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/modules/indexeddb/InspectorIndexedDBAgent.cpp
diff --git a/third_party/WebKit/Source/modules/indexeddb/InspectorIndexedDBAgent.cpp b/third_party/WebKit/Source/modules/indexeddb/InspectorIndexedDBAgent.cpp
index dfa93b0c6bcd5caa849274e3e6c20f5961677e71..6b6d1976c7fcf3addadb221ac6f0888cf6a6b0e2 100644
--- a/third_party/WebKit/Source/modules/indexeddb/InspectorIndexedDBAgent.cpp
+++ b/third_party/WebKit/Source/modules/indexeddb/InspectorIndexedDBAgent.cpp
@@ -319,7 +319,7 @@ static IDBTransaction* TransactionForDatabase(
const String& object_store_name,
const String& mode = IndexedDBNames::readonly) {
DummyExceptionStateForTesting exception_state;
- StringOrStringSequenceOrDOMStringList scope;
+ StringOrStringSequence scope;
scope.setString(object_store_name);
IDBTransaction* idb_transaction =
idb_database->transaction(script_state, scope, mode, exception_state);
« no previous file with comments | « third_party/WebKit/Source/modules/indexeddb/IDBDatabase.idl ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698