| OLD | NEW |
| 1 /* | 1 /* |
| 2 This file is part of the Blink open source project. | 2 This file is part of the Blink open source project. |
| 3 This file has been auto-generated by CodeGeneratorV8.pm. DO NOT MODIFY! | 3 This file has been auto-generated by CodeGeneratorV8.pm. DO NOT MODIFY! |
| 4 | 4 |
| 5 This library is free software; you can redistribute it and/or | 5 This library is free software; you can redistribute it and/or |
| 6 modify it under the terms of the GNU Library General Public | 6 modify it under the terms of the GNU Library General Public |
| 7 License as published by the Free Software Foundation; either | 7 License as published by the Free Software Foundation; either |
| 8 version 2 of the License, or (at your option) any later version. | 8 version 2 of the License, or (at your option) any later version. |
| 9 | 9 |
| 10 This library is distributed in the hope that it will be useful, | 10 This library is distributed in the hope that it will be useful, |
| (...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 57 // In ScriptWrappable::init, the use of a local function declaration has an issu
e on Windows: | 57 // In ScriptWrappable::init, the use of a local function declaration has an issu
e on Windows: |
| 58 // the local declaration does not pick up the surrounding namespace. Therefore,
we provide this function | 58 // the local declaration does not pick up the surrounding namespace. Therefore,
we provide this function |
| 59 // in the global namespace. | 59 // in the global namespace. |
| 60 // (More info on the MSVC bug here: http://connect.microsoft.com/VisualStudio/fe
edback/details/664619/the-namespace-of-local-function-declarations-in-c) | 60 // (More info on the MSVC bug here: http://connect.microsoft.com/VisualStudio/fe
edback/details/664619/the-namespace-of-local-function-declarations-in-c) |
| 61 void webCoreInitializeScriptWrappableForInterface(Float64Array* object) | 61 void webCoreInitializeScriptWrappableForInterface(Float64Array* object) |
| 62 { | 62 { |
| 63 WebCore::initializeScriptWrappableForInterface(object); | 63 WebCore::initializeScriptWrappableForInterface(object); |
| 64 } | 64 } |
| 65 | 65 |
| 66 namespace WebCore { | 66 namespace WebCore { |
| 67 WrapperTypeInfo V8Float64Array::info = { V8Float64Array::GetTemplate, V8Float64A
rray::derefObject, 0, 0, 0, V8Float64Array::installPerContextPrototypeProperties
, &V8ArrayBufferView::info, WrapperTypeObjectPrototype }; | 67 WrapperTypeInfo V8Float64Array::info = { V8Float64Array::GetTemplate, V8Float64A
rray::derefObject, 0, 0, 0, V8Float64Array::installPerContextEnabledPrototypePro
perties, &V8ArrayBufferView::info, WrapperTypeObjectPrototype }; |
| 68 | 68 |
| 69 namespace Float64ArrayV8Internal { | 69 namespace Float64ArrayV8Internal { |
| 70 | 70 |
| 71 template <typename T> void V8_USE(T) { } | 71 template <typename T> void V8_USE(T) { } |
| 72 | 72 |
| 73 static void fooMethod(const v8::FunctionCallbackInfo<v8::Value>& args) | 73 static void fooMethod(const v8::FunctionCallbackInfo<v8::Value>& args) |
| 74 { | 74 { |
| 75 if (UNLIKELY(args.Length() < 1)) { | 75 if (UNLIKELY(args.Length() < 1)) { |
| 76 throwTypeError(ExceptionMessages::failedToExecute("foo", "Float64Array",
ExceptionMessages::notEnoughArguments(1, args.Length())), args.GetIsolate()); | 76 throwTypeError(ExceptionMessages::failedToExecute("foo", "Float64Array",
ExceptionMessages::notEnoughArguments(1, args.Length())), args.GetIsolate()); |
| 77 return; | 77 return; |
| (...skipping 132 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 210 // Might be a XXXConstructor::info instead of an XXX::info. These will b
oth have | 210 // Might be a XXXConstructor::info instead of an XXX::info. These will b
oth have |
| 211 // the same object de-ref functions, though, so use that as the basis of
the check. | 211 // the same object de-ref functions, though, so use that as the basis of
the check. |
| 212 RELEASE_ASSERT_WITH_SECURITY_IMPLICATION(actualInfo->derefObjectFunction
== info.derefObjectFunction); | 212 RELEASE_ASSERT_WITH_SECURITY_IMPLICATION(actualInfo->derefObjectFunction
== info.derefObjectFunction); |
| 213 } | 213 } |
| 214 | 214 |
| 215 v8::Handle<v8::Object> wrapper = V8DOMWrapper::createWrapper(creationContext
, &info, toInternalPointer(impl.get()), isolate); | 215 v8::Handle<v8::Object> wrapper = V8DOMWrapper::createWrapper(creationContext
, &info, toInternalPointer(impl.get()), isolate); |
| 216 if (UNLIKELY(wrapper.IsEmpty())) | 216 if (UNLIKELY(wrapper.IsEmpty())) |
| 217 return wrapper; | 217 return wrapper; |
| 218 | 218 |
| 219 impl->buffer()->setDeallocationObserver(V8ArrayBufferDeallocationObserver::i
nstance()); | 219 impl->buffer()->setDeallocationObserver(V8ArrayBufferDeallocationObserver::i
nstance()); |
| 220 installPerContextProperties(wrapper, impl.get(), isolate); | 220 installPerContextEnabledProperties(wrapper, impl.get(), isolate); |
| 221 V8DOMWrapper::associateObjectWithWrapper<V8Float64Array>(impl, &info, wrappe
r, isolate, WrapperConfiguration::Independent); | 221 V8DOMWrapper::associateObjectWithWrapper<V8Float64Array>(impl, &info, wrappe
r, isolate, WrapperConfiguration::Independent); |
| 222 return wrapper; | 222 return wrapper; |
| 223 } | 223 } |
| 224 | 224 |
| 225 void V8Float64Array::derefObject(void* object) | 225 void V8Float64Array::derefObject(void* object) |
| 226 { | 226 { |
| 227 fromInternalPointer(object)->deref(); | 227 fromInternalPointer(object)->deref(); |
| 228 } | 228 } |
| 229 | 229 |
| 230 } // namespace WebCore | 230 } // namespace WebCore |
| OLD | NEW |