Title: [100228] trunk/Source/WebCore
Revision
100228
Author
oli...@apple.com
Date
2011-11-14 17:58:46 -0800 (Mon, 14 Nov 2011)

Log Message

Fix V8 build

Modified Paths


Diff

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


--- trunk/Source/WebCore/ChangeLog	2011-11-15 01:52:20 UTC (rev 100227)
+++ trunk/Source/WebCore/ChangeLog	2011-11-15 01:58:46 UTC (rev 100228)
@@ -1,5 +1,13 @@
 2011-11-14  Oliver Hunt  <oli...@apple.com>
 
+        Fix V8 build.
+
+        * bindings/scripts/CodeGeneratorV8.pm:
+        * bindings/scripts/test/V8/V8Float64Array.cpp:
+        (WTF::Float64Array::neuterBinding):
+
+2011-11-14  Oliver Hunt  <oli...@apple.com>
+
         Start migrating typed array impl types to WTF
         https://bugs.webkit.org/show_bug.cgi?id=72336
 

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


--- trunk/Source/WebCore/bindings/scripts/CodeGeneratorV8.pm	2011-11-15 01:52:20 UTC (rev 100227)
+++ trunk/Source/WebCore/bindings/scripts/CodeGeneratorV8.pm	2011-11-15 01:58:46 UTC (rev 100228)
@@ -2704,7 +2704,7 @@
         push(@implContent, <<END);
     }
     namespace WTF {
-    void ${nativeType}::neuterBinding(ScriptExecutionContext*) {
+    void ${nativeType}::neuterBinding(WebCore::ScriptExecutionContext*) {
         v8::Handle<v8::Value> bound = 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 (100227 => 100228)


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

Reply via email to