Diff
Modified: trunk/Source/WebCore/ChangeLog (128250 => 128251)
--- trunk/Source/WebCore/ChangeLog 2012-09-12 00:53:39 UTC (rev 128250)
+++ trunk/Source/WebCore/ChangeLog 2012-09-12 01:01:35 UTC (rev 128251)
@@ -1,3 +1,32 @@
+2012-09-11 Adam Barth <[email protected]>
+
+ Update bindings test results after http://trac.webkit.org/changeset/128242
+
+ * bindings/scripts/test/V8/V8Float64Array.cpp:
+ (WebCore::V8Float64Array::wrapSlow):
+ * bindings/scripts/test/V8/V8TestActiveDOMObject.cpp:
+ (WebCore::V8TestActiveDOMObject::wrapSlow):
+ * bindings/scripts/test/V8/V8TestCustomNamedGetter.cpp:
+ (WebCore::V8TestCustomNamedGetter::wrapSlow):
+ * bindings/scripts/test/V8/V8TestEventConstructor.cpp:
+ (WebCore::V8TestEventConstructor::wrapSlow):
+ * bindings/scripts/test/V8/V8TestEventTarget.cpp:
+ (WebCore::V8TestEventTarget::wrapSlow):
+ * bindings/scripts/test/V8/V8TestException.cpp:
+ (WebCore::V8TestException::wrapSlow):
+ * bindings/scripts/test/V8/V8TestInterface.cpp:
+ (WebCore::V8TestInterface::wrapSlow):
+ * bindings/scripts/test/V8/V8TestMediaQueryListListener.cpp:
+ (WebCore::V8TestMediaQueryListListener::wrapSlow):
+ * bindings/scripts/test/V8/V8TestNamedConstructor.cpp:
+ (WebCore::V8TestNamedConstructor::wrapSlow):
+ * bindings/scripts/test/V8/V8TestNode.cpp:
+ (WebCore::V8TestNode::wrapSlow):
+ * bindings/scripts/test/V8/V8TestObj.cpp:
+ (WebCore::V8TestObj::wrapSlow):
+ * bindings/scripts/test/V8/V8TestSerializedScriptValueInterface.cpp:
+ (WebCore::V8TestSerializedScriptValueInterface::wrapSlow):
+
2012-09-11 Michael Saboff <[email protected]>
Build fixed for http://trac.webkit.org/changeset/128243
Modified: trunk/Source/WebCore/bindings/scripts/test/V8/V8Float64Array.cpp (128250 => 128251)
--- trunk/Source/WebCore/bindings/scripts/test/V8/V8Float64Array.cpp 2012-09-12 00:53:39 UTC (rev 128250)
+++ trunk/Source/WebCore/bindings/scripts/test/V8/V8Float64Array.cpp 2012-09-12 01:01:35 UTC (rev 128251)
@@ -150,6 +150,8 @@
{
v8::Handle<v8::Object> wrapper;
ASSERT(static_cast<void*>(static_cast<ArrayBufferView*>(impl.get())) == static_cast<void*>(impl.get()));
+ Document* document = 0;
+ UNUSED_PARAM(document);
v8::Handle<v8::Context> context;
if (!creationContext.IsEmpty() && creationContext->CreationContext() != v8::Context::GetCurrent()) {
@@ -160,7 +162,7 @@
context->Enter();
}
- wrapper = V8DOMWrapper::instantiateV8Object(&info, impl.get());
+ wrapper = V8DOMWrapper::instantiateV8Object(document, &info, impl.get());
if (!context.IsEmpty())
context->Exit();
Modified: trunk/Source/WebCore/bindings/scripts/test/V8/V8TestActiveDOMObject.cpp (128250 => 128251)
--- trunk/Source/WebCore/bindings/scripts/test/V8/V8TestActiveDOMObject.cpp 2012-09-12 00:53:39 UTC (rev 128250)
+++ trunk/Source/WebCore/bindings/scripts/test/V8/V8TestActiveDOMObject.cpp 2012-09-12 01:01:35 UTC (rev 128251)
@@ -178,6 +178,8 @@
v8::Handle<v8::Object> V8TestActiveDOMObject::wrapSlow(PassRefPtr<TestActiveDOMObject> impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate)
{
v8::Handle<v8::Object> wrapper;
+ Document* document = 0;
+ UNUSED_PARAM(document);
v8::Handle<v8::Context> context;
if (!creationContext.IsEmpty() && creationContext->CreationContext() != v8::Context::GetCurrent()) {
@@ -188,7 +190,7 @@
context->Enter();
}
- wrapper = V8DOMWrapper::instantiateV8Object(&info, impl.get());
+ wrapper = V8DOMWrapper::instantiateV8Object(document, &info, impl.get());
if (!context.IsEmpty())
context->Exit();
Modified: trunk/Source/WebCore/bindings/scripts/test/V8/V8TestCustomNamedGetter.cpp (128250 => 128251)
--- trunk/Source/WebCore/bindings/scripts/test/V8/V8TestCustomNamedGetter.cpp 2012-09-12 00:53:39 UTC (rev 128250)
+++ trunk/Source/WebCore/bindings/scripts/test/V8/V8TestCustomNamedGetter.cpp 2012-09-12 01:01:35 UTC (rev 128251)
@@ -112,6 +112,8 @@
v8::Handle<v8::Object> V8TestCustomNamedGetter::wrapSlow(PassRefPtr<TestCustomNamedGetter> impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate)
{
v8::Handle<v8::Object> wrapper;
+ Document* document = 0;
+ UNUSED_PARAM(document);
v8::Handle<v8::Context> context;
if (!creationContext.IsEmpty() && creationContext->CreationContext() != v8::Context::GetCurrent()) {
@@ -122,7 +124,7 @@
context->Enter();
}
- wrapper = V8DOMWrapper::instantiateV8Object(&info, impl.get());
+ wrapper = V8DOMWrapper::instantiateV8Object(document, &info, impl.get());
if (!context.IsEmpty())
context->Exit();
Modified: trunk/Source/WebCore/bindings/scripts/test/V8/V8TestEventConstructor.cpp (128250 => 128251)
--- trunk/Source/WebCore/bindings/scripts/test/V8/V8TestEventConstructor.cpp 2012-09-12 00:53:39 UTC (rev 128250)
+++ trunk/Source/WebCore/bindings/scripts/test/V8/V8TestEventConstructor.cpp 2012-09-12 01:01:35 UTC (rev 128251)
@@ -149,6 +149,8 @@
v8::Handle<v8::Object> V8TestEventConstructor::wrapSlow(PassRefPtr<TestEventConstructor> impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate)
{
v8::Handle<v8::Object> wrapper;
+ Document* document = 0;
+ UNUSED_PARAM(document);
v8::Handle<v8::Context> context;
if (!creationContext.IsEmpty() && creationContext->CreationContext() != v8::Context::GetCurrent()) {
@@ -159,7 +161,7 @@
context->Enter();
}
- wrapper = V8DOMWrapper::instantiateV8Object(&info, impl.get());
+ wrapper = V8DOMWrapper::instantiateV8Object(document, &info, impl.get());
if (!context.IsEmpty())
context->Exit();
Modified: trunk/Source/WebCore/bindings/scripts/test/V8/V8TestEventTarget.cpp (128250 => 128251)
--- trunk/Source/WebCore/bindings/scripts/test/V8/V8TestEventTarget.cpp 2012-09-12 00:53:39 UTC (rev 128250)
+++ trunk/Source/WebCore/bindings/scripts/test/V8/V8TestEventTarget.cpp 2012-09-12 01:01:35 UTC (rev 128251)
@@ -173,6 +173,8 @@
v8::Handle<v8::Object> V8TestEventTarget::wrapSlow(PassRefPtr<TestEventTarget> impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate)
{
v8::Handle<v8::Object> wrapper;
+ Document* document = 0;
+ UNUSED_PARAM(document);
v8::Handle<v8::Context> context;
if (!creationContext.IsEmpty() && creationContext->CreationContext() != v8::Context::GetCurrent()) {
@@ -183,7 +185,7 @@
context->Enter();
}
- wrapper = V8DOMWrapper::instantiateV8Object(&info, impl.get());
+ wrapper = V8DOMWrapper::instantiateV8Object(document, &info, impl.get());
if (!context.IsEmpty())
context->Exit();
Modified: trunk/Source/WebCore/bindings/scripts/test/V8/V8TestException.cpp (128250 => 128251)
--- trunk/Source/WebCore/bindings/scripts/test/V8/V8TestException.cpp 2012-09-12 00:53:39 UTC (rev 128250)
+++ trunk/Source/WebCore/bindings/scripts/test/V8/V8TestException.cpp 2012-09-12 01:01:35 UTC (rev 128251)
@@ -103,6 +103,8 @@
v8::Handle<v8::Object> V8TestException::wrapSlow(PassRefPtr<TestException> impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate)
{
v8::Handle<v8::Object> wrapper;
+ Document* document = 0;
+ UNUSED_PARAM(document);
v8::Handle<v8::Context> context;
if (!creationContext.IsEmpty() && creationContext->CreationContext() != v8::Context::GetCurrent()) {
@@ -113,7 +115,7 @@
context->Enter();
}
- wrapper = V8DOMWrapper::instantiateV8Object(&info, impl.get());
+ wrapper = V8DOMWrapper::instantiateV8Object(document, &info, impl.get());
if (!context.IsEmpty())
context->Exit();
Modified: trunk/Source/WebCore/bindings/scripts/test/V8/V8TestInterface.cpp (128250 => 128251)
--- trunk/Source/WebCore/bindings/scripts/test/V8/V8TestInterface.cpp 2012-09-12 00:53:39 UTC (rev 128250)
+++ trunk/Source/WebCore/bindings/scripts/test/V8/V8TestInterface.cpp 2012-09-12 01:01:35 UTC (rev 128251)
@@ -342,6 +342,8 @@
v8::Handle<v8::Object> V8TestInterface::wrapSlow(PassRefPtr<TestInterface> impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate)
{
v8::Handle<v8::Object> wrapper;
+ Document* document = 0;
+ UNUSED_PARAM(document);
v8::Handle<v8::Context> context;
if (!creationContext.IsEmpty() && creationContext->CreationContext() != v8::Context::GetCurrent()) {
@@ -352,7 +354,7 @@
context->Enter();
}
- wrapper = V8DOMWrapper::instantiateV8Object(&info, impl.get());
+ wrapper = V8DOMWrapper::instantiateV8Object(document, &info, impl.get());
if (!context.IsEmpty())
context->Exit();
Modified: trunk/Source/WebCore/bindings/scripts/test/V8/V8TestMediaQueryListListener.cpp (128250 => 128251)
--- trunk/Source/WebCore/bindings/scripts/test/V8/V8TestMediaQueryListListener.cpp 2012-09-12 00:53:39 UTC (rev 128250)
+++ trunk/Source/WebCore/bindings/scripts/test/V8/V8TestMediaQueryListListener.cpp 2012-09-12 01:01:35 UTC (rev 128251)
@@ -112,6 +112,8 @@
v8::Handle<v8::Object> V8TestMediaQueryListListener::wrapSlow(PassRefPtr<TestMediaQueryListListener> impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate)
{
v8::Handle<v8::Object> wrapper;
+ Document* document = 0;
+ UNUSED_PARAM(document);
v8::Handle<v8::Context> context;
if (!creationContext.IsEmpty() && creationContext->CreationContext() != v8::Context::GetCurrent()) {
@@ -122,7 +124,7 @@
context->Enter();
}
- wrapper = V8DOMWrapper::instantiateV8Object(&info, impl.get());
+ wrapper = V8DOMWrapper::instantiateV8Object(document, &info, impl.get());
if (!context.IsEmpty())
context->Exit();
Modified: trunk/Source/WebCore/bindings/scripts/test/V8/V8TestNamedConstructor.cpp (128250 => 128251)
--- trunk/Source/WebCore/bindings/scripts/test/V8/V8TestNamedConstructor.cpp 2012-09-12 00:53:39 UTC (rev 128250)
+++ trunk/Source/WebCore/bindings/scripts/test/V8/V8TestNamedConstructor.cpp 2012-09-12 01:01:35 UTC (rev 128251)
@@ -152,6 +152,8 @@
v8::Handle<v8::Object> V8TestNamedConstructor::wrapSlow(PassRefPtr<TestNamedConstructor> impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate)
{
v8::Handle<v8::Object> wrapper;
+ Document* document = 0;
+ UNUSED_PARAM(document);
v8::Handle<v8::Context> context;
if (!creationContext.IsEmpty() && creationContext->CreationContext() != v8::Context::GetCurrent()) {
@@ -162,7 +164,7 @@
context->Enter();
}
- wrapper = V8DOMWrapper::instantiateV8Object(&info, impl.get());
+ wrapper = V8DOMWrapper::instantiateV8Object(document, &info, impl.get());
if (!context.IsEmpty())
context->Exit();
Modified: trunk/Source/WebCore/bindings/scripts/test/V8/V8TestNode.cpp (128250 => 128251)
--- trunk/Source/WebCore/bindings/scripts/test/V8/V8TestNode.cpp 2012-09-12 00:53:39 UTC (rev 128250)
+++ trunk/Source/WebCore/bindings/scripts/test/V8/V8TestNode.cpp 2012-09-12 01:01:35 UTC (rev 128251)
@@ -112,6 +112,9 @@
{
v8::Handle<v8::Object> wrapper;
ASSERT(static_cast<void*>(static_cast<Node*>(impl.get())) == static_cast<void*>(impl.get()));
+ Document* document = 0;
+ UNUSED_PARAM(document);
+ document = impl->document();
v8::Handle<v8::Context> context;
if (!creationContext.IsEmpty() && creationContext->CreationContext() != v8::Context::GetCurrent()) {
@@ -122,7 +125,7 @@
context->Enter();
}
- wrapper = V8DOMWrapper::instantiateV8Object(&info, impl.get());
+ wrapper = V8DOMWrapper::instantiateV8Object(document, &info, impl.get());
if (!context.IsEmpty())
context->Exit();
Modified: trunk/Source/WebCore/bindings/scripts/test/V8/V8TestObj.cpp (128250 => 128251)
--- trunk/Source/WebCore/bindings/scripts/test/V8/V8TestObj.cpp 2012-09-12 00:53:39 UTC (rev 128250)
+++ trunk/Source/WebCore/bindings/scripts/test/V8/V8TestObj.cpp 2012-09-12 01:01:35 UTC (rev 128251)
@@ -2299,6 +2299,8 @@
v8::Handle<v8::Object> V8TestObj::wrapSlow(PassRefPtr<TestObj> impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate)
{
v8::Handle<v8::Object> wrapper;
+ Document* document = 0;
+ UNUSED_PARAM(document);
v8::Handle<v8::Context> context;
if (!creationContext.IsEmpty() && creationContext->CreationContext() != v8::Context::GetCurrent()) {
@@ -2309,7 +2311,7 @@
context->Enter();
}
- wrapper = V8DOMWrapper::instantiateV8Object(&info, impl.get());
+ wrapper = V8DOMWrapper::instantiateV8Object(document, &info, impl.get());
if (!context.IsEmpty())
context->Exit();
Modified: trunk/Source/WebCore/bindings/scripts/test/V8/V8TestSerializedScriptValueInterface.cpp (128250 => 128251)
--- trunk/Source/WebCore/bindings/scripts/test/V8/V8TestSerializedScriptValueInterface.cpp 2012-09-12 00:53:39 UTC (rev 128250)
+++ trunk/Source/WebCore/bindings/scripts/test/V8/V8TestSerializedScriptValueInterface.cpp 2012-09-12 01:01:35 UTC (rev 128251)
@@ -295,6 +295,8 @@
v8::Handle<v8::Object> V8TestSerializedScriptValueInterface::wrapSlow(PassRefPtr<TestSerializedScriptValueInterface> impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate)
{
v8::Handle<v8::Object> wrapper;
+ Document* document = 0;
+ UNUSED_PARAM(document);
v8::Handle<v8::Context> context;
if (!creationContext.IsEmpty() && creationContext->CreationContext() != v8::Context::GetCurrent()) {
@@ -305,7 +307,7 @@
context->Enter();
}
- wrapper = V8DOMWrapper::instantiateV8Object(&info, impl.get());
+ wrapper = V8DOMWrapper::instantiateV8Object(document, &info, impl.get());
if (!context.IsEmpty())
context->Exit();