Title: [209398] trunk/Source/WebCore
Revision
209398
Author
ryanhad...@apple.com
Date
2016-12-06 09:14:03 -0800 (Tue, 06 Dec 2016)

Log Message

Rebaseline bindings tests after r209390.

Unreviewed test gardening.

* bindings/scripts/test/JS/JSTestObj.cpp:
(WebCore::convertDictionaryToJS):
* bindings/scripts/test/JS/JSTestObj.h:

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (209397 => 209398)


--- trunk/Source/WebCore/ChangeLog	2016-12-06 16:55:49 UTC (rev 209397)
+++ trunk/Source/WebCore/ChangeLog	2016-12-06 17:14:03 UTC (rev 209398)
@@ -1,3 +1,13 @@
+2016-12-06  Ryan Haddad  <ryanhad...@apple.com>
+
+        Rebaseline bindings tests after r209390.
+
+        Unreviewed test gardening.
+
+        * bindings/scripts/test/JS/JSTestObj.cpp:
+        (WebCore::convertDictionaryToJS):
+        * bindings/scripts/test/JS/JSTestObj.h:
+
 2016-12-06  Tim Horton  <timothy_hor...@apple.com>
 
         PDF markup/annotations visible in Mail on macOS but not on iOS

Modified: trunk/Source/WebCore/bindings/scripts/test/JS/JSTestObj.cpp (209397 => 209398)


--- trunk/Source/WebCore/bindings/scripts/test/JS/JSTestObj.cpp	2016-12-06 16:55:49 UTC (rev 209397)
+++ trunk/Source/WebCore/bindings/scripts/test/JS/JSTestObj.cpp	2016-12-06 17:14:03 UTC (rev 209398)
@@ -682,11 +682,11 @@
     return result;
 }
 
-template<> JSC::JSObject* convertDictionaryToJS(JSC::ExecState& state, JSDOMGlobalObject&, const TestObj::Dictionary& dictionary)
+JSC::JSObject* convertDictionaryToJS(JSC::ExecState& state, JSDOMGlobalObject& globalObject, const TestObj::Dictionary& dictionary)
 {
     auto& vm = state.vm();
 
-    auto result = constructEmptyObject(&state)
+    auto result = constructEmptyObject(&state);
 
     auto anyTypedefValueValue = toJS<IDLAny>(state, globalObject, dictionary.anyTypedefValue);
     result->putDirect(vm, JSC::Identifier::fromString(&vm, "anyTypedefValue"), anyTypedefValueValue);

Modified: trunk/Source/WebCore/bindings/scripts/test/JS/JSTestObj.h (209397 => 209398)


--- trunk/Source/WebCore/bindings/scripts/test/JS/JSTestObj.h	2016-12-06 16:55:49 UTC (rev 209397)
+++ trunk/Source/WebCore/bindings/scripts/test/JS/JSTestObj.h	2016-12-06 17:14:03 UTC (rev 209398)
@@ -169,7 +169,7 @@
 
 template<> TestObj::Dictionary convertDictionary<TestObj::Dictionary>(JSC::ExecState&, JSC::JSValue);
 
-template<> JSC::JSObject* convertDictionaryToJS(JSC::ExecState&, JSDOMGlobalObject&, const TestObj::Dictionary&);
+JSC::JSObject* convertDictionaryToJS(JSC::ExecState&, JSDOMGlobalObject&, const TestObj::Dictionary&);
 
 template<> TestObj::DictionaryThatShouldNotTolerateNull convertDictionary<TestObj::DictionaryThatShouldNotTolerateNull>(JSC::ExecState&, JSC::JSValue);
 
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to