OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 // This file has been auto-generated by code_generator_v8.py. DO NOT MODIFY! | 5 // This file has been auto-generated by code_generator_v8.py. DO NOT MODIFY! |
6 | 6 |
7 #include "config.h" | 7 #include "config.h" |
8 #include "V8TestNode.h" | 8 #include "V8TestNode.h" |
9 | 9 |
10 #include "bindings/core/v8/ExceptionState.h" | 10 #include "bindings/core/v8/ExceptionState.h" |
(...skipping 19 matching lines...) Expand all Loading... |
30 } | 30 } |
31 | 31 |
32 } // namespace blink | 32 } // namespace blink |
33 | 33 |
34 void webCoreInitializeScriptWrappableForInterface(blink::TestNode* object) | 34 void webCoreInitializeScriptWrappableForInterface(blink::TestNode* object) |
35 { | 35 { |
36 blink::initializeScriptWrappableForInterface(object); | 36 blink::initializeScriptWrappableForInterface(object); |
37 } | 37 } |
38 | 38 |
39 namespace blink { | 39 namespace blink { |
40 const WrapperTypeInfo V8TestNode::wrapperTypeInfo = { gin::kEmbedderBlink, V8Tes
tNode::domTemplate, V8TestNode::derefObject, 0, V8TestNode::toEventTarget, 0, V8
TestNode::installPerContextEnabledMethods, &V8Node::wrapperTypeInfo, WrapperType
ObjectPrototype, WillBeGarbageCollectedObject }; | 40 const WrapperTypeInfo V8TestNode::wrapperTypeInfo = { gin::kEmbedderBlink, V8Tes
tNode::domTemplate, V8TestNode::derefObject, 0, V8TestNode::toEventTarget, 0, V8
TestNode::installConditionallyEnabledMethods, &V8Node::wrapperTypeInfo, WrapperT
ypeObjectPrototype, WillBeGarbageCollectedObject }; |
41 | 41 |
42 namespace TestNodeV8Internal { | 42 namespace TestNodeV8Internal { |
43 | 43 |
44 template <typename T> void V8_USE(T) { } | 44 template <typename T> void V8_USE(T) { } |
45 | 45 |
46 static void hrefAttributeGetter(const v8::PropertyCallbackInfo<v8::Value>& info) | 46 static void hrefAttributeGetter(const v8::PropertyCallbackInfo<v8::Value>& info) |
47 { | 47 { |
48 v8::Handle<v8::Object> holder = info.Holder(); | 48 v8::Handle<v8::Object> holder = info.Holder(); |
49 TestNode* impl = V8TestNode::toNative(holder); | 49 TestNode* impl = V8TestNode::toNative(holder); |
50 v8SetReturnValueString(info, impl->href(), info.GetIsolate()); | 50 v8SetReturnValueString(info, impl->href(), info.GetIsolate()); |
(...skipping 204 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
255 const WrapperTypeInfo* actualInfo = ScriptWrappable::fromObject(impl.get
())->typeInfo(); | 255 const WrapperTypeInfo* actualInfo = ScriptWrappable::fromObject(impl.get
())->typeInfo(); |
256 // Might be a XXXConstructor::wrapperTypeInfo instead of an XXX::wrapper
TypeInfo. These will both have | 256 // Might be a XXXConstructor::wrapperTypeInfo instead of an XXX::wrapper
TypeInfo. These will both have |
257 // the same object de-ref functions, though, so use that as the basis of
the check. | 257 // the same object de-ref functions, though, so use that as the basis of
the check. |
258 RELEASE_ASSERT_WITH_SECURITY_IMPLICATION(actualInfo->derefObjectFunction
== wrapperTypeInfo.derefObjectFunction); | 258 RELEASE_ASSERT_WITH_SECURITY_IMPLICATION(actualInfo->derefObjectFunction
== wrapperTypeInfo.derefObjectFunction); |
259 } | 259 } |
260 | 260 |
261 v8::Handle<v8::Object> wrapper = V8DOMWrapper::createWrapper(creationContext
, &wrapperTypeInfo, toInternalPointer(impl.get()), isolate); | 261 v8::Handle<v8::Object> wrapper = V8DOMWrapper::createWrapper(creationContext
, &wrapperTypeInfo, toInternalPointer(impl.get()), isolate); |
262 if (UNLIKELY(wrapper.IsEmpty())) | 262 if (UNLIKELY(wrapper.IsEmpty())) |
263 return wrapper; | 263 return wrapper; |
264 | 264 |
265 installPerContextEnabledProperties(wrapper, impl.get(), isolate); | 265 installConditionallyEnabledProperties(wrapper, isolate); |
266 V8DOMWrapper::associateObjectWithWrapper<V8TestNode>(impl, &wrapperTypeInfo,
wrapper, isolate, WrapperConfiguration::Dependent); | 266 V8DOMWrapper::associateObjectWithWrapper<V8TestNode>(impl, &wrapperTypeInfo,
wrapper, isolate, WrapperConfiguration::Dependent); |
267 return wrapper; | 267 return wrapper; |
268 } | 268 } |
269 | 269 |
270 void V8TestNode::derefObject(ScriptWrappableBase* internalPointer) | 270 void V8TestNode::derefObject(ScriptWrappableBase* internalPointer) |
271 { | 271 { |
272 #if !ENABLE(OILPAN) | 272 #if !ENABLE(OILPAN) |
273 fromInternalPointer(internalPointer)->deref(); | 273 fromInternalPointer(internalPointer)->deref(); |
274 #endif // !ENABLE(OILPAN) | 274 #endif // !ENABLE(OILPAN) |
275 } | 275 } |
276 | 276 |
277 template<> | 277 template<> |
278 v8::Handle<v8::Value> toV8NoInline(TestNode* impl, v8::Handle<v8::Object> creati
onContext, v8::Isolate* isolate) | 278 v8::Handle<v8::Value> toV8NoInline(TestNode* impl, v8::Handle<v8::Object> creati
onContext, v8::Isolate* isolate) |
279 { | 279 { |
280 return toV8(impl, creationContext, isolate); | 280 return toV8(impl, creationContext, isolate); |
281 } | 281 } |
282 | 282 |
283 } // namespace blink | 283 } // namespace blink |
OLD | NEW |