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 V8TestInterfaceGarbageCollected_h 8 #define V8TestInterfaceGarbageCollected_h 9 10 #include "bindings/core/v8/ScriptWrappable.h" 11 #include "bindings/core/v8/V8Binding.h" 12 #include "bindings/core/v8/V8DOMWrapper.h" 13 #include "bindings/core/v8/V8EventTarget.h" 14 #include "bindings/core/v8/WrapperTypeInfo.h" 15 #include "bindings/tests/idls/core/TestInterfaceGarbageCollected.h" 16 #include "platform/heap/Handle.h" 17 18 namespace blink { 19 20 class V8TestInterfaceGarbageCollected { 21 public: 22 static bool hasInstance(v8::Handle<v8::Value>, v8::Isolate*); 23 static v8::Handle<v8::Object> findInstanceInPrototypeChain(v8::Handle<v8::Value>, v8::Isolate*); 24 static v8::Handle<v8::FunctionTemplate> domTemplate(v8::Isolate*); 25 static TestInterfaceGarbageCollected* toImpl(v8::Handle<v8::Object> object) 26 { 27 return toImpl(blink::toScriptWrappableBase(object)); 28 } 29 static TestInterfaceGarbageCollected* toImplWithTypeCheck(v8::Isolate*, v8::Handle<v8::Value>); 30 static const WrapperTypeInfo wrapperTypeInfo; 31 static void refObject(ScriptWrappableBase* internalPointer); 32 static void derefObject(ScriptWrappableBase* internalPointer); 33 static WrapperPersistentNode* createPersistentHandle(ScriptWrappableBase* internalPointer); 34 static EventTarget* toEventTarget(v8::Handle<v8::Object>); 35 static void constructorCallback(const v8::FunctionCallbackInfo<v8::Value>&); 36 static const int eventListenerCacheIndex = v8DefaultWrapperInternalFieldCount + 0; 37 static const int persistentHandleIndex = v8DefaultWrapperInternalFieldCount + 1; 38 static const int internalFieldCount = v8DefaultWrapperInternalFieldCount + 1 + 1; 39 static inline ScriptWrappableBase* toScriptWrappableBase(TestInterfaceGarbageCollected* impl) 40 { 41 return impl->toScriptWrappableBase(); 42 } 43 44 static inline TestInterfaceGarbageCollected* toImpl(ScriptWrappableBase* internalPointer) 45 { 46 return internalPointer->toImpl<TestInterfaceGarbageCollected>(); 47 } 48 static void installConditionallyEnabledProperties(v8::Handle<v8::Object>, v8::Isolate*) { } 49 static void installConditionallyEnabledMethods(v8::Handle<v8::Object>, v8::Isolate*) { } 50 51 private: 52 }; 53 54 inline v8::Handle<v8::Object> wrap(TestInterfaceGarbageCollected* impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate) 55 { 56 return impl->wrap(creationContext, isolate); 57 } 58 59 inline v8::Handle<v8::Value> toV8(TestInterfaceGarbageCollected* impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate) 60 { 61 if (UNLIKELY(!impl)) 62 return v8::Null(isolate); 63 v8::Handle<v8::Value> wrapper = DOMDataStore::getWrapper<V8TestInterfaceGarbageCollected>(impl, isolate); 64 if (!wrapper.IsEmpty()) 65 return wrapper; 66 67 return impl->wrap(creationContext, isolate); 68 } 69 70 template<typename CallbackInfo> 71 inline void v8SetReturnValue(const CallbackInfo& callbackInfo, TestInterfaceGarbageCollected* impl) 72 { 73 if (UNLIKELY(!impl)) { 74 v8SetReturnValueNull(callbackInfo); 75 return; 76 } 77 if (DOMDataStore::setReturnValueFromWrapper<V8TestInterfaceGarbageCollected>(callbackInfo.GetReturnValue(), impl)) 78 return; 79 v8::Handle<v8::Object> wrapper = wrap(impl, callbackInfo.Holder(), callbackInfo.GetIsolate()); 80 v8SetReturnValue(callbackInfo, wrapper); 81 } 82 83 template<typename CallbackInfo> 84 inline void v8SetReturnValueForMainWorld(const CallbackInfo& callbackInfo, TestInterfaceGarbageCollected* impl) 85 { 86 ASSERT(DOMWrapperWorld::current(callbackInfo.GetIsolate()).isMainWorld()); 87 if (UNLIKELY(!impl)) { 88 v8SetReturnValueNull(callbackInfo); 89 return; 90 } 91 if (DOMDataStore::setReturnValueFromWrapperForMainWorld<V8TestInterfaceGarbageCollected>(callbackInfo.GetReturnValue(), impl)) 92 return; 93 v8::Handle<v8::Value> wrapper = wrap(impl, callbackInfo.Holder(), callbackInfo.GetIsolate()); 94 v8SetReturnValue(callbackInfo, wrapper); 95 } 96 97 template<class CallbackInfo, class Wrappable> 98 inline void v8SetReturnValueFast(const CallbackInfo& callbackInfo, TestInterfaceGarbageCollected* impl, Wrappable* wrappable) 99 { 100 if (UNLIKELY(!impl)) { 101 v8SetReturnValueNull(callbackInfo); 102 return; 103 } 104 if (DOMDataStore::setReturnValueFromWrapperFast<V8TestInterfaceGarbageCollected>(callbackInfo.GetReturnValue(), impl, callbackInfo.Holder(), wrappable)) 105 return; 106 v8::Handle<v8::Object> wrapper = wrap(impl, callbackInfo.Holder(), callbackInfo.GetIsolate()); 107 v8SetReturnValue(callbackInfo, wrapper); 108 } 109 110 inline v8::Handle<v8::Value> toV8(RawPtr<TestInterfaceGarbageCollected> impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate) 111 { 112 return toV8(impl.get(), creationContext, isolate); 113 } 114 115 template<class CallbackInfo> 116 inline void v8SetReturnValue(const CallbackInfo& callbackInfo, RawPtr<TestInterfaceGarbageCollected> impl) 117 { 118 v8SetReturnValue(callbackInfo, impl.get()); 119 } 120 121 template<class CallbackInfo> 122 inline void v8SetReturnValueForMainWorld(const CallbackInfo& callbackInfo, RawPtr<TestInterfaceGarbageCollected> impl) 123 { 124 v8SetReturnValueForMainWorld(callbackInfo, impl.get()); 125 } 126 127 template<class CallbackInfo, class Wrappable> 128 inline void v8SetReturnValueFast(const CallbackInfo& callbackInfo, RawPtr<TestInterfaceGarbageCollected> impl, Wrappable* wrappable) 129 { 130 v8SetReturnValueFast(callbackInfo, impl.get(), wrappable); 131 } 132 133 } // namespace blink 134 #endif // V8TestInterfaceGarbageCollected_h 135