⚠ Archived content — this site is no longer maintained.   Current WebKit documentation is at docs.webkit.org.

Changeset 100229 in webkit


Ignore:
Timestamp:
Nov 14, 2011, 6:06:08 PM (15 years ago)
Author:
oliver@apple.com
Message:

Fix V8 build again.

Location:
trunk/Source/WebCore
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r100228 r100229  
     12011-11-14  Oliver Hunt  <oliver@apple.com>
     2
     3        Fix V8 build again.
     4
     5        * bindings/scripts/CodeGeneratorV8.pm:
     6        * bindings/scripts/test/V8/V8Float64Array.cpp:
     7        (WTF::Float64Array::neuterBinding):
     8
    192011-11-14  Oliver Hunt  <oliver@apple.com>
    210
  • trunk/Source/WebCore/bindings/scripts/CodeGeneratorV8.pm

    r100228 r100229  
    27062706    namespace WTF {
    27072707    void ${nativeType}::neuterBinding(WebCore::ScriptExecutionContext*) {
    2708         v8::Handle<v8::Value> bound = toV8(this);
     2708        v8::Handle<v8::Value> bound = WebCore::toV8(this);
    27092709        v8::Handle<v8::Object> object(bound.As<v8::Object>());
    27102710        object->SetIndexedPropertiesToExternalArrayData(0, v8::kExternalByteArray, 0);
  • trunk/Source/WebCore/bindings/scripts/test/V8/V8Float64Array.cpp

    r100228 r100229  
    110110    namespace WTF {
    111111    void Float64Array::neuterBinding(WebCore::ScriptExecutionContext*) {
    112         v8::Handle<v8::Value> bound = toV8(this);
     112        v8::Handle<v8::Value> bound = WebCore::toV8(this);
    113113        v8::Handle<v8::Object> object(bound.As<v8::Object>());
    114114        object->SetIndexedPropertiesToExternalArrayData(0, v8::kExternalByteArray, 0);
Note: See TracChangeset for help on using the changeset viewer.