Title: [87138] trunk/Source/WebCore
Revision
87138
Author
[email protected]
Date
2011-05-24 02:05:20 -0700 (Tue, 24 May 2011)

Log Message

2011-05-24  Andras Becsi  <[email protected]>

        Reviewed by Csaba Osztrogonác.

        [Qt][V8] REGRESSION (r87063): Fix the build.
        https://bugs.webkit.org/show_bug.cgi?id=61290

        No new tests needed.

        * bindings/scripts/CodeGeneratorV8.pm: disable the unsupported call
        tracked in: https://bugs.webkit.org/show_bug.cgi?id=61291

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (87137 => 87138)


--- trunk/Source/WebCore/ChangeLog	2011-05-24 09:02:49 UTC (rev 87137)
+++ trunk/Source/WebCore/ChangeLog	2011-05-24 09:05:20 UTC (rev 87138)
@@ -1,3 +1,15 @@
+2011-05-24  Andras Becsi  <[email protected]>
+
+        Reviewed by Csaba Osztrogonác.
+
+        [Qt][V8] REGRESSION (r87063): Fix the build.
+        https://bugs.webkit.org/show_bug.cgi?id=61290
+
+        No new tests needed.
+
+        * bindings/scripts/CodeGeneratorV8.pm: disable the unsupported call
+        tracked in: https://bugs.webkit.org/show_bug.cgi?id=61291
+
 2011-05-24  Naoki Takano  <[email protected]>
 
         Reviewed by Kent Tamura.

Modified: trunk/Source/WebCore/bindings/scripts/CodeGeneratorV8.pm (87137 => 87138)


--- trunk/Source/WebCore/bindings/scripts/CodeGeneratorV8.pm	2011-05-24 09:02:49 UTC (rev 87137)
+++ trunk/Source/WebCore/bindings/scripts/CodeGeneratorV8.pm	2011-05-24 09:05:20 UTC (rev 87138)
@@ -2553,8 +2553,13 @@
 
     push(@implContent, <<END);
     v8::Persistent<v8::Object> wrapperHandle = v8::Persistent<v8::Object>::New(wrapper);
+\#if !PLATFORM(QT)
+// FIXME: qtscript-staging's shipped V8 does not have the needed functionality yet.
+// https://bugs.webkit.org/show_bug.cgi?id=61291
+
     if (!hasDependentLifetime)
         wrapperHandle.MarkIndependent();
+\#endif
 END
     if (IsNodeSubType($dataNode)) {
         push(@implContent, <<END);
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to