Title: [100229] trunk/Source/WebCore
Revision
100229
Author
[email protected]
Date
2011-11-14 18:06:08 -0800 (Mon, 14 Nov 2011)

Log Message

Fix V8 build again.

Modified Paths


Diff

Modified: trunk/Source/WebCore/ChangeLog (100228 => 100229)


--- trunk/Source/WebCore/ChangeLog	2011-11-15 01:58:46 UTC (rev 100228)
+++ trunk/Source/WebCore/ChangeLog	2011-11-15 02:06:08 UTC (rev 100229)
@@ -1,5 +1,13 @@
 2011-11-14  Oliver Hunt  <[email protected]>
 
+        Fix V8 build again.
+
+        * bindings/scripts/CodeGeneratorV8.pm:
+        * bindings/scripts/test/V8/V8Float64Array.cpp:
+        (WTF::Float64Array::neuterBinding):
+
+2011-11-14  Oliver Hunt  <[email protected]>
+
         Fix V8 build.
 
         * bindings/scripts/CodeGeneratorV8.pm:

Modified: trunk/Source/WebCore/bindings/scripts/CodeGeneratorV8.pm (100228 => 100229)


--- trunk/Source/WebCore/bindings/scripts/CodeGeneratorV8.pm	2011-11-15 01:58:46 UTC (rev 100228)
+++ trunk/Source/WebCore/bindings/scripts/CodeGeneratorV8.pm	2011-11-15 02:06:08 UTC (rev 100229)
@@ -2705,7 +2705,7 @@
     }
     namespace WTF {
     void ${nativeType}::neuterBinding(WebCore::ScriptExecutionContext*) {
-        v8::Handle<v8::Value> bound = toV8(this);
+        v8::Handle<v8::Value> bound = WebCore::toV8(this);
         v8::Handle<v8::Object> object(bound.As<v8::Object>());
         object->SetIndexedPropertiesToExternalArrayData(0, v8::kExternalByteArray, 0);
     }

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


--- trunk/Source/WebCore/bindings/scripts/test/V8/V8Float64Array.cpp	2011-11-15 01:58:46 UTC (rev 100228)
+++ trunk/Source/WebCore/bindings/scripts/test/V8/V8Float64Array.cpp	2011-11-15 02:06:08 UTC (rev 100229)
@@ -109,7 +109,7 @@
     }
     namespace WTF {
     void Float64Array::neuterBinding(WebCore::ScriptExecutionContext*) {
-        v8::Handle<v8::Value> bound = toV8(this);
+        v8::Handle<v8::Value> bound = WebCore::toV8(this);
         v8::Handle<v8::Object> object(bound.As<v8::Object>());
         object->SetIndexedPropertiesToExternalArrayData(0, v8::kExternalByteArray, 0);
     }
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to