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

Changeset 101099 in webkit


Ignore:
Timestamp:
Nov 23, 2011, 11:58:31 AM (15 years ago)
Author:
dslomov@google.com
Message:

Unreviewed, rebaseline binding tests after http://trac.webkit.org/changeset/101064.

  • bindings/scripts/test/JS/JSFloat64Array.cpp:

(WebCore::toFloat64Array):

  • bindings/scripts/test/V8/V8Float64Array.cpp:

(WebCore::V8Float64Array::wrapSlow):

Location:
trunk/Source/WebCore
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r101094 r101099  
     12011-11-23  Dmitry Lomov  <dslomov@google.com>
     2
     3        Unreviewed, rebaseline binding tests after http://trac.webkit.org/changeset/101064.
     4
     5        * bindings/scripts/test/JS/JSFloat64Array.cpp:
     6        (WebCore::toFloat64Array):
     7        * bindings/scripts/test/V8/V8Float64Array.cpp:
     8        (WebCore::V8Float64Array::wrapSlow):
     9
    1102011-11-23  Sheriff Bot  <webkit.review.bot@gmail.com>
    211
  • trunk/Source/WebCore/bindings/scripts/test/JS/JSFloat64Array.cpp

    r100227 r101099  
    247247    return value.inherits(&JSFloat64Array::s_info) ? static_cast<JSFloat64Array*>(asObject(value))->impl() : 0;
    248248}
    249 }
    250 namespace WTF {
    251 void Float64Array::neuterBinding(WebCore::ScriptExecutionContext*) {
    252 }
    253 }
    254 namespace WebCore {
    255 
    256 }
     249
     250}
  • trunk/Source/WebCore/bindings/scripts/test/V8/V8Float64Array.cpp

    r100229 r101099  
    107107    return wrapper;
    108108}
    109     }
    110     namespace WTF {
    111     void Float64Array::neuterBinding(WebCore::ScriptExecutionContext*) {
    112         v8::Handle<v8::Value> bound = WebCore::toV8(this);
    113         v8::Handle<v8::Object> object(bound.As<v8::Object>());
    114         object->SetIndexedPropertiesToExternalArrayData(0, v8::kExternalByteArray, 0);
    115     }
    116     }
    117     namespace WebCore {
    118109
    119110void V8Float64Array::derefObject(void* object)
Note: See TracChangeset for help on using the changeset viewer.