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 "V8TestTypedefs.h" | 8 #include "V8TestTypedefs.h" |
9 | 9 |
10 #include "bindings/core/v8/ExceptionState.h" | 10 #include "bindings/core/v8/ExceptionState.h" |
(...skipping 22 matching lines...) Expand all Loading... |
33 } | 33 } |
34 | 34 |
35 } // namespace blink | 35 } // namespace blink |
36 | 36 |
37 void webCoreInitializeScriptWrappableForInterface(blink::TestTypedefs* object) | 37 void webCoreInitializeScriptWrappableForInterface(blink::TestTypedefs* object) |
38 { | 38 { |
39 blink::initializeScriptWrappableForInterface(object); | 39 blink::initializeScriptWrappableForInterface(object); |
40 } | 40 } |
41 | 41 |
42 namespace blink { | 42 namespace blink { |
43 const WrapperTypeInfo V8TestTypedefs::wrapperTypeInfo = { gin::kEmbedderBlink, V
8TestTypedefs::domTemplate, V8TestTypedefs::derefObject, 0, 0, 0, V8TestTypedefs
::installPerContextEnabledMethods, 0, WrapperTypeObjectPrototype, RefCountedObje
ct }; | 43 const WrapperTypeInfo V8TestTypedefs::wrapperTypeInfo = { gin::kEmbedderBlink, V
8TestTypedefs::domTemplate, V8TestTypedefs::derefObject, 0, 0, 0, V8TestTypedefs
::installConditionallyEnabledMethods, 0, WrapperTypeObjectPrototype, RefCountedO
bject }; |
44 | 44 |
45 namespace TestTypedefsV8Internal { | 45 namespace TestTypedefsV8Internal { |
46 | 46 |
47 template <typename T> void V8_USE(T) { } | 47 template <typename T> void V8_USE(T) { } |
48 | 48 |
49 static void uLongLongAttributeAttributeGetter(const v8::PropertyCallbackInfo<v8:
:Value>& info) | 49 static void uLongLongAttributeAttributeGetter(const v8::PropertyCallbackInfo<v8:
:Value>& info) |
50 { | 50 { |
51 v8::Handle<v8::Object> holder = info.Holder(); | 51 v8::Handle<v8::Object> holder = info.Holder(); |
52 TestTypedefs* impl = V8TestTypedefs::toNative(holder); | 52 TestTypedefs* impl = V8TestTypedefs::toNative(holder); |
53 v8SetReturnValue(info, static_cast<double>(impl->uLongLongAttribute())); | 53 v8SetReturnValue(info, static_cast<double>(impl->uLongLongAttribute())); |
(...skipping 314 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
368 const WrapperTypeInfo* actualInfo = ScriptWrappable::fromObject(impl.get
())->typeInfo(); | 368 const WrapperTypeInfo* actualInfo = ScriptWrappable::fromObject(impl.get
())->typeInfo(); |
369 // Might be a XXXConstructor::wrapperTypeInfo instead of an XXX::wrapper
TypeInfo. These will both have | 369 // Might be a XXXConstructor::wrapperTypeInfo instead of an XXX::wrapper
TypeInfo. These will both have |
370 // the same object de-ref functions, though, so use that as the basis of
the check. | 370 // the same object de-ref functions, though, so use that as the basis of
the check. |
371 RELEASE_ASSERT_WITH_SECURITY_IMPLICATION(actualInfo->derefObjectFunction
== wrapperTypeInfo.derefObjectFunction); | 371 RELEASE_ASSERT_WITH_SECURITY_IMPLICATION(actualInfo->derefObjectFunction
== wrapperTypeInfo.derefObjectFunction); |
372 } | 372 } |
373 | 373 |
374 v8::Handle<v8::Object> wrapper = V8DOMWrapper::createWrapper(creationContext
, &wrapperTypeInfo, toInternalPointer(impl.get()), isolate); | 374 v8::Handle<v8::Object> wrapper = V8DOMWrapper::createWrapper(creationContext
, &wrapperTypeInfo, toInternalPointer(impl.get()), isolate); |
375 if (UNLIKELY(wrapper.IsEmpty())) | 375 if (UNLIKELY(wrapper.IsEmpty())) |
376 return wrapper; | 376 return wrapper; |
377 | 377 |
378 installPerContextEnabledProperties(wrapper, impl.get(), isolate); | 378 installConditionallyEnabledProperties(wrapper, isolate); |
379 V8DOMWrapper::associateObjectWithWrapper<V8TestTypedefs>(impl, &wrapperTypeI
nfo, wrapper, isolate, WrapperConfiguration::Independent); | 379 V8DOMWrapper::associateObjectWithWrapper<V8TestTypedefs>(impl, &wrapperTypeI
nfo, wrapper, isolate, WrapperConfiguration::Independent); |
380 return wrapper; | 380 return wrapper; |
381 } | 381 } |
382 | 382 |
383 void V8TestTypedefs::derefObject(ScriptWrappableBase* internalPointer) | 383 void V8TestTypedefs::derefObject(ScriptWrappableBase* internalPointer) |
384 { | 384 { |
385 fromInternalPointer(internalPointer)->deref(); | 385 fromInternalPointer(internalPointer)->deref(); |
386 } | 386 } |
387 | 387 |
388 template<> | 388 template<> |
389 v8::Handle<v8::Value> toV8NoInline(TestTypedefs* impl, v8::Handle<v8::Object> cr
eationContext, v8::Isolate* isolate) | 389 v8::Handle<v8::Value> toV8NoInline(TestTypedefs* impl, v8::Handle<v8::Object> cr
eationContext, v8::Isolate* isolate) |
390 { | 390 { |
391 return toV8(impl, creationContext, isolate); | 391 return toV8(impl, creationContext, isolate); |
392 } | 392 } |
393 | 393 |
394 } // namespace blink | 394 } // namespace blink |
OLD | NEW |