| 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::wrapperTypeInfo = { V8Float64Array::GetTemplate,
V8Float64Array::derefObject, 0, 0, 0, V8Float64Array::installPerContextEnabledP
rototypeProperties, &V8ArrayBufferView::wrapperTypeInfo, WrapperTypeObjectProtot
ype }; | 67 const WrapperTypeInfo V8Float64Array::wrapperTypeInfo = { V8Float64Array::GetTem
plate, V8Float64Array::derefObject, 0, 0, 0, V8Float64Array::installPerContextEn
abledPrototypeProperties, &V8ArrayBufferView::wrapperTypeInfo, WrapperTypeObject
Prototype }; |
| 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 143 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 221 V8DOMWrapper::associateObjectWithWrapper<V8Float64Array>(impl, &wrapperTypeI
nfo, wrapper, isolate, WrapperConfiguration::Independent); | 221 V8DOMWrapper::associateObjectWithWrapper<V8Float64Array>(impl, &wrapperTypeI
nfo, wrapper, 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 |