| 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::info = { V8TestNode::GetTemplate, V8TestNode::derefO
bject, 0, V8TestNode::toEventTarget, 0, V8TestNode::installPerContextPrototypePr
operties, &V8Node::info, WrapperTypeObjectPrototype }; | 60 WrapperTypeInfo V8TestNode::info = { V8TestNode::GetTemplate, V8TestNode::derefO
bject, 0, V8TestNode::toEventTarget, 0, V8TestNode::installPerContextEnabledProt
otypeProperties, &V8Node::info, WrapperTypeObjectPrototype }; |
| 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 138 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 209 const WrapperTypeInfo* actualInfo = ScriptWrappable::getTypeInfoFromObje
ct(impl.get()); | 209 const WrapperTypeInfo* actualInfo = ScriptWrappable::getTypeInfoFromObje
ct(impl.get()); |
| 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 installPerContextProperties(wrapper, impl.get(), isolate); | 219 installPerContextEnabledProperties(wrapper, impl.get(), isolate); |
| 220 V8DOMWrapper::associateObjectWithWrapper<V8TestNode>(impl, &info, wrapper, i
solate, WrapperConfiguration::Dependent); | 220 V8DOMWrapper::associateObjectWithWrapper<V8TestNode>(impl, &info, wrapper, i
solate, 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 |