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

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

Issue 50073004: We don't need to pass |creationContext| to v8SetReturnValue family (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 1 month 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
1 /* 1 /*
2 This file is part of the Blink open source project. 2 This file is part of the Blink open source project.
3 This file has been auto-generated by CodeGeneratorV8.pm. DO NOT MODIFY! 3 This file has been auto-generated by CodeGeneratorV8.pm. DO NOT MODIFY!
4 4
5 This library is free software; you can redistribute it and/or 5 This library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Library General Public 6 modify it under the terms of the GNU Library General Public
7 License as published by the Free Software Foundation; either 7 License as published by the Free Software Foundation; either
8 version 2 of the License, or (at your option) any later version. 8 version 2 of the License, or (at your option) any later version.
9 9
10 This library is distributed in the hope that it will be useful, 10 This library is distributed in the hope that it will be useful,
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after
74 { 74 {
75 if (UNLIKELY(!impl)) 75 if (UNLIKELY(!impl))
76 return v8NullWithCheck(isolate); 76 return v8NullWithCheck(isolate);
77 v8::Handle<v8::Value> wrapper = DOMDataStore::getWrapper<V8TestException>(im pl, isolate); 77 v8::Handle<v8::Value> wrapper = DOMDataStore::getWrapper<V8TestException>(im pl, isolate);
78 if (!wrapper.IsEmpty()) 78 if (!wrapper.IsEmpty())
79 return wrapper; 79 return wrapper;
80 return wrap(impl, creationContext, isolate); 80 return wrap(impl, creationContext, isolate);
81 } 81 }
82 82
83 template<typename CallbackInfo> 83 template<typename CallbackInfo>
84 inline void v8SetReturnValue(const CallbackInfo& callbackInfo, TestException* im pl, v8::Handle<v8::Object> creationContext) 84 inline void v8SetReturnValue(const CallbackInfo& callbackInfo, TestException* im pl)
85 { 85 {
86 if (UNLIKELY(!impl)) { 86 if (UNLIKELY(!impl)) {
87 v8SetReturnValueNull(callbackInfo); 87 v8SetReturnValueNull(callbackInfo);
88 return; 88 return;
89 } 89 }
90 if (DOMDataStore::setReturnValueFromWrapper<V8TestException>(callbackInfo.Ge tReturnValue(), impl)) 90 if (DOMDataStore::setReturnValueFromWrapper<V8TestException>(callbackInfo.Ge tReturnValue(), impl))
91 return; 91 return;
92 v8::Handle<v8::Object> wrapper = wrap(impl, creationContext, callbackInfo.Ge tIsolate()); 92 v8::Handle<v8::Object> wrapper = wrap(impl, callbackInfo.Holder(), callbackI nfo.GetIsolate());
93 v8SetReturnValue(callbackInfo, wrapper); 93 v8SetReturnValue(callbackInfo, wrapper);
94 } 94 }
95 95
96 template<typename CallbackInfo> 96 template<typename CallbackInfo>
97 inline void v8SetReturnValueForMainWorld(const CallbackInfo& callbackInfo, TestE xception* impl, v8::Handle<v8::Object> creationContext) 97 inline void v8SetReturnValueForMainWorld(const CallbackInfo& callbackInfo, TestE xception* impl)
98 { 98 {
99 ASSERT(worldType(callbackInfo.GetIsolate()) == MainWorld); 99 ASSERT(worldType(callbackInfo.GetIsolate()) == MainWorld);
100 if (UNLIKELY(!impl)) { 100 if (UNLIKELY(!impl)) {
101 v8SetReturnValueNull(callbackInfo); 101 v8SetReturnValueNull(callbackInfo);
102 return; 102 return;
103 } 103 }
104 if (DOMDataStore::setReturnValueFromWrapperForMainWorld<V8TestException>(cal lbackInfo.GetReturnValue(), impl)) 104 if (DOMDataStore::setReturnValueFromWrapperForMainWorld<V8TestException>(cal lbackInfo.GetReturnValue(), impl))
105 return; 105 return;
106 v8::Handle<v8::Value> wrapper = wrap(impl, creationContext, callbackInfo.Get Isolate()); 106 v8::Handle<v8::Value> wrapper = wrap(impl, callbackInfo.Holder(), callbackIn fo.GetIsolate());
107 v8SetReturnValue(callbackInfo, wrapper); 107 v8SetReturnValue(callbackInfo, wrapper);
108 } 108 }
109 109
110 template<class CallbackInfo, class Wrappable> 110 template<class CallbackInfo, class Wrappable>
111 inline void v8SetReturnValueFast(const CallbackInfo& callbackInfo, TestException * impl, Wrappable* wrappable) 111 inline void v8SetReturnValueFast(const CallbackInfo& callbackInfo, TestException * impl, Wrappable* wrappable)
112 { 112 {
113 if (UNLIKELY(!impl)) { 113 if (UNLIKELY(!impl)) {
114 v8SetReturnValueNull(callbackInfo); 114 v8SetReturnValueNull(callbackInfo);
115 return; 115 return;
116 } 116 }
117 if (DOMDataStore::setReturnValueFromWrapperFast<V8TestException>(callbackInf o.GetReturnValue(), impl, callbackInfo.Holder(), wrappable)) 117 if (DOMDataStore::setReturnValueFromWrapperFast<V8TestException>(callbackInf o.GetReturnValue(), impl, callbackInfo.Holder(), wrappable))
118 return; 118 return;
119 v8::Handle<v8::Object> wrapper = wrap(impl, callbackInfo.Holder(), callbackI nfo.GetIsolate()); 119 v8::Handle<v8::Object> wrapper = wrap(impl, callbackInfo.Holder(), callbackI nfo.GetIsolate());
120 v8SetReturnValue(callbackInfo, wrapper); 120 v8SetReturnValue(callbackInfo, wrapper);
121 } 121 }
122 122
123 inline v8::Handle<v8::Value> toV8(PassRefPtr<TestException > impl, v8::Handle<v8 ::Object> creationContext, v8::Isolate* isolate) 123 inline v8::Handle<v8::Value> toV8(PassRefPtr<TestException > impl, v8::Handle<v8 ::Object> creationContext, v8::Isolate* isolate)
124 { 124 {
125 return toV8(impl.get(), creationContext, isolate); 125 return toV8(impl.get(), creationContext, isolate);
126 } 126 }
127 127
128 template<class CallbackInfo> 128 template<class CallbackInfo>
129 inline void v8SetReturnValue(const CallbackInfo& callbackInfo, PassRefPtr<TestEx ception > impl, v8::Handle<v8::Object> creationContext) 129 inline void v8SetReturnValue(const CallbackInfo& callbackInfo, PassRefPtr<TestEx ception > impl)
130 { 130 {
131 v8SetReturnValue(callbackInfo, impl.get(), creationContext); 131 v8SetReturnValue(callbackInfo, impl.get());
132 } 132 }
133 133
134 template<class CallbackInfo> 134 template<class CallbackInfo>
135 inline void v8SetReturnValueForMainWorld(const CallbackInfo& callbackInfo, PassR efPtr<TestException > impl, v8::Handle<v8::Object> creationContext) 135 inline void v8SetReturnValueForMainWorld(const CallbackInfo& callbackInfo, PassR efPtr<TestException > impl)
136 { 136 {
137 v8SetReturnValueForMainWorld(callbackInfo, impl.get(), creationContext); 137 v8SetReturnValueForMainWorld(callbackInfo, impl.get());
138 } 138 }
139 139
140 template<class CallbackInfo, class Wrappable> 140 template<class CallbackInfo, class Wrappable>
141 inline void v8SetReturnValueFast(const CallbackInfo& callbackInfo, PassRefPtr<Te stException > impl, Wrappable* wrappable) 141 inline void v8SetReturnValueFast(const CallbackInfo& callbackInfo, PassRefPtr<Te stException > impl, Wrappable* wrappable)
142 { 142 {
143 v8SetReturnValueFast(callbackInfo, impl.get(), wrappable); 143 v8SetReturnValueFast(callbackInfo, impl.get(), wrappable);
144 } 144 }
145 145
146 } 146 }
147 147
148 #endif // V8TestException_h 148 #endif // V8TestException_h
OLDNEW
« no previous file with comments | « Source/bindings/tests/results/V8TestEventTarget.cpp ('k') | Source/bindings/tests/results/V8TestExtendedEvent.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698