| OLD | NEW |
| (Empty) |
| 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 | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 // This file has been auto-generated by code_generator_v8.py. DO NOT MODIFY! | |
| 6 | |
| 7 #ifndef V8TestInterfacePython3_h | |
| 8 #define V8TestInterfacePython3_h | |
| 9 | |
| 10 #include "bindings/tests/idls/TestInterfacePython3.h" | |
| 11 #include "bindings/v8/V8Binding.h" | |
| 12 #include "bindings/v8/V8DOMWrapper.h" | |
| 13 #include "bindings/v8/WrapperTypeInfo.h" | |
| 14 #include "heap/Handle.h" | |
| 15 | |
| 16 namespace WebCore { | |
| 17 | |
| 18 class V8TestInterfacePython3 { | |
| 19 public: | |
| 20 static bool hasInstance(v8::Handle<v8::Value>, v8::Isolate*); | |
| 21 static v8::Handle<v8::Object> findInstanceInPrototypeChain(v8::Handle<v8::Va
lue>, v8::Isolate*); | |
| 22 static v8::Handle<v8::FunctionTemplate> domTemplate(v8::Isolate*); | |
| 23 static TestInterfacePython3* toNative(v8::Handle<v8::Object> object) | |
| 24 { | |
| 25 return fromInternalPointer(object->GetAlignedPointerFromInternalField(v8
DOMWrapperObjectIndex)); | |
| 26 } | |
| 27 static TestInterfacePython3* toNativeWithTypeCheck(v8::Isolate*, v8::Handle<
v8::Value>); | |
| 28 static const WrapperTypeInfo wrapperTypeInfo; | |
| 29 static void derefObject(void*); | |
| 30 static void visitDOMWrapper(void*, const v8::Persistent<v8::Object>&, v8::Is
olate*); | |
| 31 static const int internalFieldCount = v8DefaultWrapperInternalFieldCount + 0
; | |
| 32 static inline void* toInternalPointer(TestInterfacePython3* impl) | |
| 33 { | |
| 34 return impl; | |
| 35 } | |
| 36 | |
| 37 static inline TestInterfacePython3* fromInternalPointer(void* object) | |
| 38 { | |
| 39 return static_cast<TestInterfacePython3*>(object); | |
| 40 } | |
| 41 static void installPerContextEnabledProperties(v8::Handle<v8::Object>, TestI
nterfacePython3*, v8::Isolate*) { } | |
| 42 static void installPerContextEnabledMethods(v8::Handle<v8::Object>, v8::Isol
ate*) { } | |
| 43 | |
| 44 private: | |
| 45 friend v8::Handle<v8::Object> wrap(TestInterfacePython3*, v8::Handle<v8::Obj
ect> creationContext, v8::Isolate*); | |
| 46 static v8::Handle<v8::Object> createWrapper(PassRefPtr<TestInterfacePython3>
, v8::Handle<v8::Object> creationContext, v8::Isolate*); | |
| 47 }; | |
| 48 | |
| 49 inline v8::Handle<v8::Object> wrap(TestInterfacePython3* impl, v8::Handle<v8::Ob
ject> creationContext, v8::Isolate* isolate) | |
| 50 { | |
| 51 ASSERT(impl); | |
| 52 ASSERT(!DOMDataStore::containsWrapper<V8TestInterfacePython3>(impl, isolate)
); | |
| 53 return V8TestInterfacePython3::createWrapper(impl, creationContext, isolate)
; | |
| 54 } | |
| 55 | |
| 56 inline v8::Handle<v8::Value> toV8(TestInterfacePython3* impl, v8::Handle<v8::Obj
ect> creationContext, v8::Isolate* isolate) | |
| 57 { | |
| 58 if (UNLIKELY(!impl)) | |
| 59 return v8::Null(isolate); | |
| 60 v8::Handle<v8::Value> wrapper = DOMDataStore::getWrapper<V8TestInterfacePyth
on3>(impl, isolate); | |
| 61 if (!wrapper.IsEmpty()) | |
| 62 return wrapper; | |
| 63 return wrap(impl, creationContext, isolate); | |
| 64 } | |
| 65 | |
| 66 template<typename CallbackInfo> | |
| 67 inline void v8SetReturnValue(const CallbackInfo& callbackInfo, TestInterfacePyth
on3* impl) | |
| 68 { | |
| 69 if (UNLIKELY(!impl)) { | |
| 70 v8SetReturnValueNull(callbackInfo); | |
| 71 return; | |
| 72 } | |
| 73 if (DOMDataStore::setReturnValueFromWrapper<V8TestInterfacePython3>(callback
Info.GetReturnValue(), impl)) | |
| 74 return; | |
| 75 v8::Handle<v8::Object> wrapper = wrap(impl, callbackInfo.Holder(), callbackI
nfo.GetIsolate()); | |
| 76 v8SetReturnValue(callbackInfo, wrapper); | |
| 77 } | |
| 78 | |
| 79 template<typename CallbackInfo> | |
| 80 inline void v8SetReturnValueForMainWorld(const CallbackInfo& callbackInfo, TestI
nterfacePython3* impl) | |
| 81 { | |
| 82 ASSERT(DOMWrapperWorld::current(callbackInfo.GetIsolate())->isMainWorld()); | |
| 83 if (UNLIKELY(!impl)) { | |
| 84 v8SetReturnValueNull(callbackInfo); | |
| 85 return; | |
| 86 } | |
| 87 if (DOMDataStore::setReturnValueFromWrapperForMainWorld<V8TestInterfacePytho
n3>(callbackInfo.GetReturnValue(), impl)) | |
| 88 return; | |
| 89 v8::Handle<v8::Value> wrapper = wrap(impl, callbackInfo.Holder(), callbackIn
fo.GetIsolate()); | |
| 90 v8SetReturnValue(callbackInfo, wrapper); | |
| 91 } | |
| 92 | |
| 93 template<class CallbackInfo, class Wrappable> | |
| 94 inline void v8SetReturnValueFast(const CallbackInfo& callbackInfo, TestInterface
Python3* impl, Wrappable* wrappable) | |
| 95 { | |
| 96 if (UNLIKELY(!impl)) { | |
| 97 v8SetReturnValueNull(callbackInfo); | |
| 98 return; | |
| 99 } | |
| 100 if (DOMDataStore::setReturnValueFromWrapperFast<V8TestInterfacePython3>(call
backInfo.GetReturnValue(), impl, callbackInfo.Holder(), wrappable)) | |
| 101 return; | |
| 102 v8::Handle<v8::Object> wrapper = wrap(impl, callbackInfo.Holder(), callbackI
nfo.GetIsolate()); | |
| 103 v8SetReturnValue(callbackInfo, wrapper); | |
| 104 } | |
| 105 | |
| 106 inline v8::Handle<v8::Value> toV8(PassRefPtr<TestInterfacePython3> impl, v8::Han
dle<v8::Object> creationContext, v8::Isolate* isolate) | |
| 107 { | |
| 108 return toV8(impl.get(), creationContext, isolate); | |
| 109 } | |
| 110 | |
| 111 template<class CallbackInfo> | |
| 112 inline void v8SetReturnValue(const CallbackInfo& callbackInfo, PassRefPtr<TestIn
terfacePython3> impl) | |
| 113 { | |
| 114 v8SetReturnValue(callbackInfo, impl.get()); | |
| 115 } | |
| 116 | |
| 117 template<class CallbackInfo> | |
| 118 inline void v8SetReturnValueForMainWorld(const CallbackInfo& callbackInfo, PassR
efPtr<TestInterfacePython3> impl) | |
| 119 { | |
| 120 v8SetReturnValueForMainWorld(callbackInfo, impl.get()); | |
| 121 } | |
| 122 | |
| 123 template<class CallbackInfo, class Wrappable> | |
| 124 inline void v8SetReturnValueFast(const CallbackInfo& callbackInfo, PassRefPtr<Te
stInterfacePython3> impl, Wrappable* wrappable) | |
| 125 { | |
| 126 v8SetReturnValueFast(callbackInfo, impl.get(), wrappable); | |
| 127 } | |
| 128 | |
| 129 } | |
| 130 #endif // V8TestInterfacePython3_h | |
| OLD | NEW |