Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(467)

Side by Side Diff: Source/bindings/tests/results/V8TestInterface3.h

Issue 217053007: Revert of Make DOMWrapperWorld::current() return a reference instead of a pointer (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Revert 213543004 too Created 6 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(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 V8TestInterface3_h
8 #define V8TestInterface3_h
9
10 #include "bindings/tests/idls/TestInterface3.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 V8TestInterface3 {
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 TestInterface3* toNative(v8::Handle<v8::Object> object)
24 {
25 return fromInternalPointer(object->GetAlignedPointerFromInternalField(v8 DOMWrapperObjectIndex));
26 }
27 static TestInterface3* toNativeWithTypeCheck(v8::Isolate*, v8::Handle<v8::Va lue>);
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 void indexedPropertyGetterCustom(uint32_t, const v8::PropertyCallback Info<v8::Value>&);
32 static void indexedPropertySetterCustom(uint32_t, v8::Local<v8::Value>, cons t v8::PropertyCallbackInfo<v8::Value>&);
33 static void indexedPropertyDeleterCustom(uint32_t, const v8::PropertyCallbac kInfo<v8::Boolean>&);
34 static void namedPropertyGetterCustom(v8::Local<v8::String>, const v8::Prope rtyCallbackInfo<v8::Value>&);
35 static void namedPropertySetterCustom(v8::Local<v8::String>, v8::Local<v8::V alue>, const v8::PropertyCallbackInfo<v8::Value>&);
36 static void namedPropertyQueryCustom(v8::Local<v8::String>, const v8::Proper tyCallbackInfo<v8::Integer>&);
37 static void namedPropertyDeleterCustom(v8::Local<v8::String>, const v8::Prop ertyCallbackInfo<v8::Boolean>&);
38 static void namedPropertyEnumeratorCustom(const v8::PropertyCallbackInfo<v8: :Array>&);
39 static const int internalFieldCount = v8DefaultWrapperInternalFieldCount + 0 ;
40 static inline void* toInternalPointer(TestInterface3* impl)
41 {
42 return impl;
43 }
44
45 static inline TestInterface3* fromInternalPointer(void* object)
46 {
47 return static_cast<TestInterface3*>(object);
48 }
49 static void installPerContextEnabledProperties(v8::Handle<v8::Object>, TestI nterface3*, v8::Isolate*) { }
50 static void installPerContextEnabledMethods(v8::Handle<v8::Object>, v8::Isol ate*) { }
51
52 private:
53 friend v8::Handle<v8::Object> wrap(TestInterface3*, v8::Handle<v8::Object> c reationContext, v8::Isolate*);
54 static v8::Handle<v8::Object> createWrapper(PassRefPtr<TestInterface3>, v8:: Handle<v8::Object> creationContext, v8::Isolate*);
55 };
56
57 inline v8::Handle<v8::Object> wrap(TestInterface3* impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate)
58 {
59 ASSERT(impl);
60 ASSERT(!DOMDataStore::containsWrapper<V8TestInterface3>(impl, isolate));
61 return V8TestInterface3::createWrapper(impl, creationContext, isolate);
62 }
63
64 inline v8::Handle<v8::Value> toV8(TestInterface3* impl, v8::Handle<v8::Object> c reationContext, v8::Isolate* isolate)
65 {
66 if (UNLIKELY(!impl))
67 return v8::Null(isolate);
68 v8::Handle<v8::Value> wrapper = DOMDataStore::getWrapper<V8TestInterface3>(i mpl, isolate);
69 if (!wrapper.IsEmpty())
70 return wrapper;
71 return wrap(impl, creationContext, isolate);
72 }
73
74 template<typename CallbackInfo>
75 inline void v8SetReturnValue(const CallbackInfo& callbackInfo, TestInterface3* i mpl)
76 {
77 if (UNLIKELY(!impl)) {
78 v8SetReturnValueNull(callbackInfo);
79 return;
80 }
81 if (DOMDataStore::setReturnValueFromWrapper<V8TestInterface3>(callbackInfo.G etReturnValue(), impl))
82 return;
83 v8::Handle<v8::Object> wrapper = wrap(impl, callbackInfo.Holder(), callbackI nfo.GetIsolate());
84 v8SetReturnValue(callbackInfo, wrapper);
85 }
86
87 template<typename CallbackInfo>
88 inline void v8SetReturnValueForMainWorld(const CallbackInfo& callbackInfo, TestI nterface3* impl)
89 {
90 ASSERT(DOMWrapperWorld::current(callbackInfo.GetIsolate()).isMainWorld());
91 if (UNLIKELY(!impl)) {
92 v8SetReturnValueNull(callbackInfo);
93 return;
94 }
95 if (DOMDataStore::setReturnValueFromWrapperForMainWorld<V8TestInterface3>(ca llbackInfo.GetReturnValue(), impl))
96 return;
97 v8::Handle<v8::Value> wrapper = wrap(impl, callbackInfo.Holder(), callbackIn fo.GetIsolate());
98 v8SetReturnValue(callbackInfo, wrapper);
99 }
100
101 template<class CallbackInfo, class Wrappable>
102 inline void v8SetReturnValueFast(const CallbackInfo& callbackInfo, TestInterface 3* impl, Wrappable* wrappable)
103 {
104 if (UNLIKELY(!impl)) {
105 v8SetReturnValueNull(callbackInfo);
106 return;
107 }
108 if (DOMDataStore::setReturnValueFromWrapperFast<V8TestInterface3>(callbackIn fo.GetReturnValue(), impl, callbackInfo.Holder(), wrappable))
109 return;
110 v8::Handle<v8::Object> wrapper = wrap(impl, callbackInfo.Holder(), callbackI nfo.GetIsolate());
111 v8SetReturnValue(callbackInfo, wrapper);
112 }
113
114 inline v8::Handle<v8::Value> toV8(PassRefPtr<TestInterface3> impl, v8::Handle<v8 ::Object> creationContext, v8::Isolate* isolate)
115 {
116 return toV8(impl.get(), creationContext, isolate);
117 }
118
119 template<class CallbackInfo>
120 inline void v8SetReturnValue(const CallbackInfo& callbackInfo, PassRefPtr<TestIn terface3> impl)
121 {
122 v8SetReturnValue(callbackInfo, impl.get());
123 }
124
125 template<class CallbackInfo>
126 inline void v8SetReturnValueForMainWorld(const CallbackInfo& callbackInfo, PassR efPtr<TestInterface3> impl)
127 {
128 v8SetReturnValueForMainWorld(callbackInfo, impl.get());
129 }
130
131 template<class CallbackInfo, class Wrappable>
132 inline void v8SetReturnValueFast(const CallbackInfo& callbackInfo, PassRefPtr<Te stInterface3> impl, Wrappable* wrappable)
133 {
134 v8SetReturnValueFast(callbackInfo, impl.get(), wrappable);
135 }
136
137 }
138 #endif // V8TestInterface3_h
OLDNEW
« no previous file with comments | « Source/bindings/tests/results/V8TestInterface2.cpp ('k') | Source/bindings/tests/results/V8TestInterface3.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698