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