| 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 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 50 // In ScriptWrappable::init, the use of a local function declaration has an issu
e on Windows: | 50 // In ScriptWrappable::init, the use of a local function declaration has an issu
e on Windows: |
| 51 // the local declaration does not pick up the surrounding namespace. Therefore,
we provide this function | 51 // the local declaration does not pick up the surrounding namespace. Therefore,
we provide this function |
| 52 // in the global namespace. | 52 // in the global namespace. |
| 53 // (More info on the MSVC bug here: http://connect.microsoft.com/VisualStudio/fe
edback/details/664619/the-namespace-of-local-function-declarations-in-c) | 53 // (More info on the MSVC bug here: http://connect.microsoft.com/VisualStudio/fe
edback/details/664619/the-namespace-of-local-function-declarations-in-c) |
| 54 void webCoreInitializeScriptWrappableForInterface(WebCore::TestNode* object) | 54 void webCoreInitializeScriptWrappableForInterface(WebCore::TestNode* object) |
| 55 { | 55 { |
| 56 WebCore::initializeScriptWrappableForInterface(object); | 56 WebCore::initializeScriptWrappableForInterface(object); |
| 57 } | 57 } |
| 58 | 58 |
| 59 namespace WebCore { | 59 namespace WebCore { |
| 60 WrapperTypeInfo V8TestNode::wrapperTypeInfo = { V8TestNode::GetTemplate, V8TestN
ode::derefObject, 0, V8TestNode::toEventTarget, 0, V8TestNode::installPerContext
EnabledPrototypeProperties, &V8Node::wrapperTypeInfo, WrapperTypeObjectPrototype
}; | 60 const WrapperTypeInfo V8TestNode::wrapperTypeInfo = { V8TestNode::GetTemplate, V
8TestNode::derefObject, 0, V8TestNode::toEventTarget, 0, V8TestNode::installPerC
ontextEnabledPrototypeProperties, &V8Node::wrapperTypeInfo, WrapperTypeObjectPro
totype }; |
| 61 | 61 |
| 62 namespace TestNodeV8Internal { | 62 namespace TestNodeV8Internal { |
| 63 | 63 |
| 64 template <typename T> void V8_USE(T) { } | 64 template <typename T> void V8_USE(T) { } |
| 65 | 65 |
| 66 static void hrefAttributeGetter(v8::Local<v8::String> name, const v8::PropertyCa
llbackInfo<v8::Value>& info) | 66 static void hrefAttributeGetter(v8::Local<v8::String> name, const v8::PropertyCa
llbackInfo<v8::Value>& info) |
| 67 { | 67 { |
| 68 TestNode* imp = V8TestNode::toNative(info.Holder()); | 68 TestNode* imp = V8TestNode::toNative(info.Holder()); |
| 69 v8SetReturnValueString(info, imp->href(), info.GetIsolate()); | 69 v8SetReturnValueString(info, imp->href(), info.GetIsolate()); |
| 70 } | 70 } |
| (...skipping 149 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 220 V8DOMWrapper::associateObjectWithWrapper<V8TestNode>(impl, &wrapperTypeInfo,
wrapper, isolate, WrapperConfiguration::Dependent); | 220 V8DOMWrapper::associateObjectWithWrapper<V8TestNode>(impl, &wrapperTypeInfo,
wrapper, isolate, WrapperConfiguration::Dependent); |
| 221 return wrapper; | 221 return wrapper; |
| 222 } | 222 } |
| 223 | 223 |
| 224 void V8TestNode::derefObject(void* object) | 224 void V8TestNode::derefObject(void* object) |
| 225 { | 225 { |
| 226 fromInternalPointer(object)->deref(); | 226 fromInternalPointer(object)->deref(); |
| 227 } | 227 } |
| 228 | 228 |
| 229 } // namespace WebCore | 229 } // namespace WebCore |
| OLD | NEW |