Title: [193909] trunk/Source/WebCore
Revision
193909
Author
[email protected]
Date
2015-12-10 09:03:56 -0800 (Thu, 10 Dec 2015)

Log Message

Followup for:
Modern IDB: storage/indexeddb/intversion-close-between-events.html fails.
https://bugs.webkit.org/show_bug.cgi?id=152096

Implementing Darin Adler's review feedback that came after the patch landed.

* bindings/js/JSIDBDatabaseCustom.cpp:
(WebCore::JSIDBDatabase::transaction): No need to explicitly cast to Vector<String>.

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (193908 => 193909)


--- trunk/Source/WebCore/ChangeLog	2015-12-10 16:50:30 UTC (rev 193908)
+++ trunk/Source/WebCore/ChangeLog	2015-12-10 17:03:56 UTC (rev 193909)
@@ -1,3 +1,14 @@
+2015-12-10  Brady Eidson  <[email protected]>
+
+        Followup for:
+        Modern IDB: storage/indexeddb/intversion-close-between-events.html fails.
+        https://bugs.webkit.org/show_bug.cgi?id=152096
+
+        Implementing Darin Adler's review feedback that came after the patch landed.
+
+        * bindings/js/JSIDBDatabaseCustom.cpp:
+        (WebCore::JSIDBDatabase::transaction): No need to explicitly cast to Vector<String>.
+
 2015-12-10  Youenn Fablet  <[email protected]>
 
         JSC Builtins should use safe array methods

Modified: trunk/Source/WebCore/bindings/js/JSIDBDatabaseCustom.cpp (193908 => 193909)


--- trunk/Source/WebCore/bindings/js/JSIDBDatabaseCustom.cpp	2015-12-10 16:50:30 UTC (rev 193908)
+++ trunk/Source/WebCore/bindings/js/JSIDBDatabaseCustom.cpp	2015-12-10 17:03:56 UTC (rev 193909)
@@ -99,7 +99,7 @@
         return jsUndefined();
 
     if (domStringList)
-        scope = Vector<String>(*domStringList);
+        scope = *domStringList;
     else {
         scope.append(scopeArg.toString(&exec)->value(&exec));
         if (exec.hadException())
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to