Title: [141564] trunk/Source/WebCore
Revision
141564
Author
hara...@chromium.org
Date
2013-02-01 02:09:47 -0800 (Fri, 01 Feb 2013)

Log Message

Unreviewed build fix after r141553.

* bindings/scripts/CodeGeneratorV8.pm:
(GenerateImplementation):
* bindings/scripts/test/V8/V8Float64Array.cpp:
(WebCore::V8Float64Array::HasInstance):
* bindings/scripts/test/V8/V8TestActiveDOMObject.cpp:
(WebCore::V8TestActiveDOMObject::HasInstance):
* bindings/scripts/test/V8/V8TestCustomNamedGetter.cpp:
(WebCore::V8TestCustomNamedGetter::HasInstance):
* bindings/scripts/test/V8/V8TestEventConstructor.cpp:
(WebCore::V8TestEventConstructor::HasInstance):
* bindings/scripts/test/V8/V8TestEventTarget.cpp:
(WebCore::V8TestEventTarget::HasInstance):
* bindings/scripts/test/V8/V8TestException.cpp:
(WebCore::V8TestException::HasInstance):
* bindings/scripts/test/V8/V8TestInterface.cpp:
(WebCore::V8TestInterface::HasInstance):
* bindings/scripts/test/V8/V8TestMediaQueryListListener.cpp:
(WebCore::V8TestMediaQueryListListener::HasInstance):
* bindings/scripts/test/V8/V8TestNamedConstructor.cpp:
(WebCore::V8TestNamedConstructor::HasInstance):
* bindings/scripts/test/V8/V8TestNode.cpp:
(WebCore::V8TestNode::HasInstance):
* bindings/scripts/test/V8/V8TestObj.cpp:
(WebCore::V8TestObj::HasInstance):
* bindings/scripts/test/V8/V8TestOverloadedConstructors.cpp:
(WebCore::V8TestOverloadedConstructors::HasInstance):
* bindings/scripts/test/V8/V8TestSerializedScriptValueInterface.cpp:
(WebCore::V8TestSerializedScriptValueInterface::HasInstance):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (141563 => 141564)


--- trunk/Source/WebCore/ChangeLog	2013-02-01 10:07:25 UTC (rev 141563)
+++ trunk/Source/WebCore/ChangeLog	2013-02-01 10:09:47 UTC (rev 141564)
@@ -1,3 +1,36 @@
+2013-02-01  Kentaro Hara  <hara...@chromium.org>
+
+        Unreviewed build fix after r141553.
+
+        * bindings/scripts/CodeGeneratorV8.pm:
+        (GenerateImplementation):
+        * bindings/scripts/test/V8/V8Float64Array.cpp:
+        (WebCore::V8Float64Array::HasInstance):
+        * bindings/scripts/test/V8/V8TestActiveDOMObject.cpp:
+        (WebCore::V8TestActiveDOMObject::HasInstance):
+        * bindings/scripts/test/V8/V8TestCustomNamedGetter.cpp:
+        (WebCore::V8TestCustomNamedGetter::HasInstance):
+        * bindings/scripts/test/V8/V8TestEventConstructor.cpp:
+        (WebCore::V8TestEventConstructor::HasInstance):
+        * bindings/scripts/test/V8/V8TestEventTarget.cpp:
+        (WebCore::V8TestEventTarget::HasInstance):
+        * bindings/scripts/test/V8/V8TestException.cpp:
+        (WebCore::V8TestException::HasInstance):
+        * bindings/scripts/test/V8/V8TestInterface.cpp:
+        (WebCore::V8TestInterface::HasInstance):
+        * bindings/scripts/test/V8/V8TestMediaQueryListListener.cpp:
+        (WebCore::V8TestMediaQueryListListener::HasInstance):
+        * bindings/scripts/test/V8/V8TestNamedConstructor.cpp:
+        (WebCore::V8TestNamedConstructor::HasInstance):
+        * bindings/scripts/test/V8/V8TestNode.cpp:
+        (WebCore::V8TestNode::HasInstance):
+        * bindings/scripts/test/V8/V8TestObj.cpp:
+        (WebCore::V8TestObj::HasInstance):
+        * bindings/scripts/test/V8/V8TestOverloadedConstructors.cpp:
+        (WebCore::V8TestOverloadedConstructors::HasInstance):
+        * bindings/scripts/test/V8/V8TestSerializedScriptValueInterface.cpp:
+        (WebCore::V8TestSerializedScriptValueInterface::HasInstance):
+
 2013-02-01  Vsevolod Vlasov  <vse...@chromium.org>
 
         Web Inspector: Sources panel navigator reveal and expand fixes.

Modified: trunk/Source/WebCore/bindings/scripts/CodeGeneratorV8.pm (141563 => 141564)


--- trunk/Source/WebCore/bindings/scripts/CodeGeneratorV8.pm	2013-02-01 10:07:25 UTC (rev 141563)
+++ trunk/Source/WebCore/bindings/scripts/CodeGeneratorV8.pm	2013-02-01 10:09:47 UTC (rev 141564)
@@ -3150,6 +3150,8 @@
 
 bool ${v8InterfaceName}::HasInstance(v8::Handle<v8::Value> value, v8::Isolate* isolate)
 {
+    if (!isolate)
+        isolate = v8::Isolate::GetCurrent();
     return GetRawTemplate(isolate)->HasInstance(value);
 }
 

Modified: trunk/Source/WebCore/bindings/scripts/test/V8/V8Float64Array.cpp (141563 => 141564)


--- trunk/Source/WebCore/bindings/scripts/test/V8/V8Float64Array.cpp	2013-02-01 10:07:25 UTC (rev 141563)
+++ trunk/Source/WebCore/bindings/scripts/test/V8/V8Float64Array.cpp	2013-02-01 10:09:47 UTC (rev 141564)
@@ -165,6 +165,8 @@
 
 bool V8Float64Array::HasInstance(v8::Handle<v8::Value> value, v8::Isolate* isolate)
 {
+    if (!isolate)
+        isolate = v8::Isolate::GetCurrent();
     return GetRawTemplate(isolate)->HasInstance(value);
 }
 

Modified: trunk/Source/WebCore/bindings/scripts/test/V8/V8TestActiveDOMObject.cpp (141563 => 141564)


--- trunk/Source/WebCore/bindings/scripts/test/V8/V8TestActiveDOMObject.cpp	2013-02-01 10:07:25 UTC (rev 141563)
+++ trunk/Source/WebCore/bindings/scripts/test/V8/V8TestActiveDOMObject.cpp	2013-02-01 10:09:47 UTC (rev 141564)
@@ -193,6 +193,8 @@
 
 bool V8TestActiveDOMObject::HasInstance(v8::Handle<v8::Value> value, v8::Isolate* isolate)
 {
+    if (!isolate)
+        isolate = v8::Isolate::GetCurrent();
     return GetRawTemplate(isolate)->HasInstance(value);
 }
 

Modified: trunk/Source/WebCore/bindings/scripts/test/V8/V8TestCustomNamedGetter.cpp (141563 => 141564)


--- trunk/Source/WebCore/bindings/scripts/test/V8/V8TestCustomNamedGetter.cpp	2013-02-01 10:07:25 UTC (rev 141563)
+++ trunk/Source/WebCore/bindings/scripts/test/V8/V8TestCustomNamedGetter.cpp	2013-02-01 10:09:47 UTC (rev 141564)
@@ -131,6 +131,8 @@
 
 bool V8TestCustomNamedGetter::HasInstance(v8::Handle<v8::Value> value, v8::Isolate* isolate)
 {
+    if (!isolate)
+        isolate = v8::Isolate::GetCurrent();
     return GetRawTemplate(isolate)->HasInstance(value);
 }
 

Modified: trunk/Source/WebCore/bindings/scripts/test/V8/V8TestEventConstructor.cpp (141563 => 141564)


--- trunk/Source/WebCore/bindings/scripts/test/V8/V8TestEventConstructor.cpp	2013-02-01 10:07:25 UTC (rev 141563)
+++ trunk/Source/WebCore/bindings/scripts/test/V8/V8TestEventConstructor.cpp	2013-02-01 10:09:47 UTC (rev 141564)
@@ -163,6 +163,8 @@
 
 bool V8TestEventConstructor::HasInstance(v8::Handle<v8::Value> value, v8::Isolate* isolate)
 {
+    if (!isolate)
+        isolate = v8::Isolate::GetCurrent();
     return GetRawTemplate(isolate)->HasInstance(value);
 }
 

Modified: trunk/Source/WebCore/bindings/scripts/test/V8/V8TestEventTarget.cpp (141563 => 141564)


--- trunk/Source/WebCore/bindings/scripts/test/V8/V8TestEventTarget.cpp	2013-02-01 10:07:25 UTC (rev 141563)
+++ trunk/Source/WebCore/bindings/scripts/test/V8/V8TestEventTarget.cpp	2013-02-01 10:09:47 UTC (rev 141564)
@@ -192,6 +192,8 @@
 
 bool V8TestEventTarget::HasInstance(v8::Handle<v8::Value> value, v8::Isolate* isolate)
 {
+    if (!isolate)
+        isolate = v8::Isolate::GetCurrent();
     return GetRawTemplate(isolate)->HasInstance(value);
 }
 

Modified: trunk/Source/WebCore/bindings/scripts/test/V8/V8TestException.cpp (141563 => 141564)


--- trunk/Source/WebCore/bindings/scripts/test/V8/V8TestException.cpp	2013-02-01 10:07:25 UTC (rev 141563)
+++ trunk/Source/WebCore/bindings/scripts/test/V8/V8TestException.cpp	2013-02-01 10:09:47 UTC (rev 141564)
@@ -122,6 +122,8 @@
 
 bool V8TestException::HasInstance(v8::Handle<v8::Value> value, v8::Isolate* isolate)
 {
+    if (!isolate)
+        isolate = v8::Isolate::GetCurrent();
     return GetRawTemplate(isolate)->HasInstance(value);
 }
 

Modified: trunk/Source/WebCore/bindings/scripts/test/V8/V8TestInterface.cpp (141563 => 141564)


--- trunk/Source/WebCore/bindings/scripts/test/V8/V8TestInterface.cpp	2013-02-01 10:07:25 UTC (rev 141563)
+++ trunk/Source/WebCore/bindings/scripts/test/V8/V8TestInterface.cpp	2013-02-01 10:09:47 UTC (rev 141564)
@@ -347,6 +347,8 @@
 
 bool V8TestInterface::HasInstance(v8::Handle<v8::Value> value, v8::Isolate* isolate)
 {
+    if (!isolate)
+        isolate = v8::Isolate::GetCurrent();
     return GetRawTemplate(isolate)->HasInstance(value);
 }
 

Modified: trunk/Source/WebCore/bindings/scripts/test/V8/V8TestMediaQueryListListener.cpp (141563 => 141564)


--- trunk/Source/WebCore/bindings/scripts/test/V8/V8TestMediaQueryListListener.cpp	2013-02-01 10:07:25 UTC (rev 141563)
+++ trunk/Source/WebCore/bindings/scripts/test/V8/V8TestMediaQueryListListener.cpp	2013-02-01 10:09:47 UTC (rev 141564)
@@ -131,6 +131,8 @@
 
 bool V8TestMediaQueryListListener::HasInstance(v8::Handle<v8::Value> value, v8::Isolate* isolate)
 {
+    if (!isolate)
+        isolate = v8::Isolate::GetCurrent();
     return GetRawTemplate(isolate)->HasInstance(value);
 }
 

Modified: trunk/Source/WebCore/bindings/scripts/test/V8/V8TestNamedConstructor.cpp (141563 => 141564)


--- trunk/Source/WebCore/bindings/scripts/test/V8/V8TestNamedConstructor.cpp	2013-02-01 10:07:25 UTC (rev 141563)
+++ trunk/Source/WebCore/bindings/scripts/test/V8/V8TestNamedConstructor.cpp	2013-02-01 10:09:47 UTC (rev 141564)
@@ -167,6 +167,8 @@
 
 bool V8TestNamedConstructor::HasInstance(v8::Handle<v8::Value> value, v8::Isolate* isolate)
 {
+    if (!isolate)
+        isolate = v8::Isolate::GetCurrent();
     return GetRawTemplate(isolate)->HasInstance(value);
 }
 

Modified: trunk/Source/WebCore/bindings/scripts/test/V8/V8TestNode.cpp (141563 => 141564)


--- trunk/Source/WebCore/bindings/scripts/test/V8/V8TestNode.cpp	2013-02-01 10:07:25 UTC (rev 141563)
+++ trunk/Source/WebCore/bindings/scripts/test/V8/V8TestNode.cpp	2013-02-01 10:09:47 UTC (rev 141564)
@@ -129,6 +129,8 @@
 
 bool V8TestNode::HasInstance(v8::Handle<v8::Value> value, v8::Isolate* isolate)
 {
+    if (!isolate)
+        isolate = v8::Isolate::GetCurrent();
     return GetRawTemplate(isolate)->HasInstance(value);
 }
 

Modified: trunk/Source/WebCore/bindings/scripts/test/V8/V8TestObj.cpp (141563 => 141564)


--- trunk/Source/WebCore/bindings/scripts/test/V8/V8TestObj.cpp	2013-02-01 10:07:25 UTC (rev 141563)
+++ trunk/Source/WebCore/bindings/scripts/test/V8/V8TestObj.cpp	2013-02-01 10:09:47 UTC (rev 141564)
@@ -2243,6 +2243,8 @@
 
 bool V8TestObj::HasInstance(v8::Handle<v8::Value> value, v8::Isolate* isolate)
 {
+    if (!isolate)
+        isolate = v8::Isolate::GetCurrent();
     return GetRawTemplate(isolate)->HasInstance(value);
 }
 

Modified: trunk/Source/WebCore/bindings/scripts/test/V8/V8TestOverloadedConstructors.cpp (141563 => 141564)


--- trunk/Source/WebCore/bindings/scripts/test/V8/V8TestOverloadedConstructors.cpp	2013-02-01 10:07:25 UTC (rev 141563)
+++ trunk/Source/WebCore/bindings/scripts/test/V8/V8TestOverloadedConstructors.cpp	2013-02-01 10:09:47 UTC (rev 141564)
@@ -186,6 +186,8 @@
 
 bool V8TestOverloadedConstructors::HasInstance(v8::Handle<v8::Value> value, v8::Isolate* isolate)
 {
+    if (!isolate)
+        isolate = v8::Isolate::GetCurrent();
     return GetRawTemplate(isolate)->HasInstance(value);
 }
 

Modified: trunk/Source/WebCore/bindings/scripts/test/V8/V8TestSerializedScriptValueInterface.cpp (141563 => 141564)


--- trunk/Source/WebCore/bindings/scripts/test/V8/V8TestSerializedScriptValueInterface.cpp	2013-02-01 10:07:25 UTC (rev 141563)
+++ trunk/Source/WebCore/bindings/scripts/test/V8/V8TestSerializedScriptValueInterface.cpp	2013-02-01 10:09:47 UTC (rev 141564)
@@ -304,6 +304,8 @@
 
 bool V8TestSerializedScriptValueInterface::HasInstance(v8::Handle<v8::Value> value, v8::Isolate* isolate)
 {
+    if (!isolate)
+        isolate = v8::Isolate::GetCurrent();
     return GetRawTemplate(isolate)->HasInstance(value);
 }
 
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to