Changeset 201816 in webkit
- Timestamp:
- Jun 8, 2016, 11:45:22 AM (10 years ago)
- Location:
- trunk/Source/WebCore
- Files:
-
- 3 edited
-
ChangeLog (modified) (1 diff)
-
bindings/scripts/test/JS/JSTestGlobalObject.cpp (modified) (1 diff)
-
bindings/scripts/test/JS/JSTestGlobalObject.h (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/ChangeLog
r201815 r201816 1 2016-06-08 Ryan Haddad <ryanhaddad@apple.com> 2 3 Rebaseline bindings tests after r201808 4 5 Unreviewed test gardening. 6 7 * bindings/scripts/test/JS/JSTestGlobalObject.cpp: 8 (WebCore::JSTestGlobalObject::finishCreation): 9 * bindings/scripts/test/JS/JSTestGlobalObject.h: 10 1 11 2016-06-08 Lucas Forschler <lforschler@apple.com> 2 12 -
trunk/Source/WebCore/bindings/scripts/test/JS/JSTestGlobalObject.cpp
r201719 r201816 116 116 } 117 117 118 void JSTestGlobalObject::finishCreation(VM& vm )119 { 120 Base::finishCreation(vm );118 void JSTestGlobalObject::finishCreation(VM& vm, JSProxy* proxy) 119 { 120 Base::finishCreation(vm, proxy); 121 121 122 122 #if ENABLE(TEST_FEATURE) -
trunk/Source/WebCore/bindings/scripts/test/JS/JSTestGlobalObject.h
r201719 r201816 65 65 } 66 66 67 void finishCreation(JSC::VM& );67 void finishCreation(JSC::VM&, JSC::JSProxy*); 68 68 }; 69 69
Note:
See TracChangeset
for help on using the changeset viewer.