Changeset 101099 in webkit
- Timestamp:
- Nov 23, 2011, 11:58:31 AM (15 years ago)
- Location:
- trunk/Source/WebCore
- Files:
-
- 3 edited
-
ChangeLog (modified) (1 diff)
-
bindings/scripts/test/JS/JSFloat64Array.cpp (modified) (1 diff)
-
bindings/scripts/test/V8/V8Float64Array.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/ChangeLog
r101094 r101099 1 2011-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 1 10 2011-11-23 Sheriff Bot <webkit.review.bot@gmail.com> 2 11 -
trunk/Source/WebCore/bindings/scripts/test/JS/JSFloat64Array.cpp
r100227 r101099 247 247 return value.inherits(&JSFloat64Array::s_info) ? static_cast<JSFloat64Array*>(asObject(value))->impl() : 0; 248 248 } 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 107 107 return wrapper; 108 108 } 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 {118 109 119 110 void V8Float64Array::derefObject(void* object)
Note:
See TracChangeset
for help on using the changeset viewer.