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

Side by Side Diff: Source/bindings/tests/results/modules/V8TestInterfacePartial.cpp

Issue 946973005: IDL: Drop value conversion (V8 -> C++) macros from generated code (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: address comments Created 5 years, 10 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
« no previous file with comments | « Source/bindings/tests/results/modules/V8TestInterface5.cpp ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 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 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 // This file has been auto-generated by code_generator_v8.py. DO NOT MODIFY! 5 // This file has been auto-generated by code_generator_v8.py. DO NOT MODIFY!
6 6
7 #include "config.h" 7 #include "config.h"
8 #if ENABLE(CONDITION) 8 #if ENABLE(CONDITION)
9 #include "V8TestInterfacePartial.h" 9 #include "V8TestInterfacePartial.h"
10 10
(...skipping 21 matching lines...) Expand all
32 32
33 namespace blink { 33 namespace blink {
34 34
35 namespace TestInterfaceImplementationPartialV8Internal { 35 namespace TestInterfaceImplementationPartialV8Internal {
36 36
37 static void voidMethodPartialOverload3Method(const v8::FunctionCallbackInfo<v8:: Value>& info) 37 static void voidMethodPartialOverload3Method(const v8::FunctionCallbackInfo<v8:: Value>& info)
38 { 38 {
39 TestInterfaceImplementation* impl = V8TestInterface::toImpl(info.Holder()); 39 TestInterfaceImplementation* impl = V8TestInterface::toImpl(info.Holder());
40 V8StringResource<> value; 40 V8StringResource<> value;
41 { 41 {
42 TOSTRING_VOID_INTERNAL(value, info[0]); 42 value = info[0];
43 if (!value.prepare())
44 return;
43 } 45 }
44 TestPartialInterfaceImplementation3::voidMethodPartialOverload(*impl, value) ; 46 TestPartialInterfaceImplementation3::voidMethodPartialOverload(*impl, value) ;
45 } 47 }
46 48
47 static void voidMethodPartialOverloadMethod(const v8::FunctionCallbackInfo<v8::V alue>& info) 49 static void voidMethodPartialOverloadMethod(const v8::FunctionCallbackInfo<v8::V alue>& info)
48 { 50 {
49 ExceptionState exceptionState(ExceptionState::ExecutionContext, "voidMethodP artialOverload", "TestInterface", info.Holder(), info.GetIsolate()); 51 ExceptionState exceptionState(ExceptionState::ExecutionContext, "voidMethodP artialOverload", "TestInterface", info.Holder(), info.GetIsolate());
50 switch (std::min(1, info.Length())) { 52 switch (std::min(1, info.Length())) {
51 case 0: 53 case 0:
52 break; 54 break;
53 case 1: 55 case 1:
54 if (true) { 56 if (true) {
55 voidMethodPartialOverload3Method(info); 57 voidMethodPartialOverload3Method(info);
56 return; 58 return;
57 } 59 }
58 break; 60 break;
59 default: 61 default:
60 break; 62 break;
61 } 63 }
62 exceptionState.throwTypeError("No function was found that matched the signat ure provided."); 64 exceptionState.throwTypeError("No function was found that matched the signat ure provided.");
63 exceptionState.throwIfNeeded(); 65 exceptionState.throwIfNeeded();
66 return;
64 } 67 }
65 68
66 static void staticVoidMethodPartialOverload2Method(const v8::FunctionCallbackInf o<v8::Value>& info) 69 static void staticVoidMethodPartialOverload2Method(const v8::FunctionCallbackInf o<v8::Value>& info)
67 { 70 {
68 V8StringResource<> value; 71 V8StringResource<> value;
69 { 72 {
70 TOSTRING_VOID_INTERNAL(value, info[0]); 73 value = info[0];
74 if (!value.prepare())
75 return;
71 } 76 }
72 TestPartialInterfaceImplementation3::staticVoidMethodPartialOverload(value); 77 TestPartialInterfaceImplementation3::staticVoidMethodPartialOverload(value);
73 } 78 }
74 79
75 static void staticVoidMethodPartialOverloadMethod(const v8::FunctionCallbackInfo <v8::Value>& info) 80 static void staticVoidMethodPartialOverloadMethod(const v8::FunctionCallbackInfo <v8::Value>& info)
76 { 81 {
77 ExceptionState exceptionState(ExceptionState::ExecutionContext, "staticVoidM ethodPartialOverload", "TestInterface", info.Holder(), info.GetIsolate()); 82 ExceptionState exceptionState(ExceptionState::ExecutionContext, "staticVoidM ethodPartialOverload", "TestInterface", info.Holder(), info.GetIsolate());
78 switch (std::min(1, info.Length())) { 83 switch (std::min(1, info.Length())) {
79 case 0: 84 case 0:
80 break; 85 break;
81 case 1: 86 case 1:
82 if (true) { 87 if (true) {
83 staticVoidMethodPartialOverload2Method(info); 88 staticVoidMethodPartialOverload2Method(info);
84 return; 89 return;
85 } 90 }
86 break; 91 break;
87 default: 92 default:
88 break; 93 break;
89 } 94 }
90 exceptionState.throwTypeError("No function was found that matched the signat ure provided."); 95 exceptionState.throwTypeError("No function was found that matched the signat ure provided.");
91 exceptionState.throwIfNeeded(); 96 exceptionState.throwIfNeeded();
97 return;
92 } 98 }
93 99
94 static void promiseMethodPartialOverload3Method(const v8::FunctionCallbackInfo<v 8::Value>& info) 100 static void promiseMethodPartialOverload3Method(const v8::FunctionCallbackInfo<v 8::Value>& info)
95 { 101 {
96 TestInterfaceImplementation* impl = V8TestInterface::toImpl(info.Holder()); 102 TestInterfaceImplementation* impl = V8TestInterface::toImpl(info.Holder());
97 Document* document; 103 Document* document;
98 { 104 {
99 document = V8Document::toImplWithTypeCheck(info.GetIsolate(), info[0]); 105 document = V8Document::toImplWithTypeCheck(info.GetIsolate(), info[0]);
100 if (!document) { 106 if (!document) {
101 v8SetReturnValue(info, ScriptPromise::rejectRaw(info.GetIsolate(), V 8ThrowException::createTypeError(info.GetIsolate(), ExceptionMessages::failedToE xecute("promiseMethodPartialOverload", "TestInterface", "parameter 1 is not of t ype 'Document'.")))); 107 v8SetReturnValue(info, ScriptPromise::rejectRaw(info.GetIsolate(), V 8ThrowException::createTypeError(info.GetIsolate(), ExceptionMessages::failedToE xecute("promiseMethodPartialOverload", "TestInterface", "parameter 1 is not of t ype 'Document'."))));
(...skipping 13 matching lines...) Expand all
115 if (V8Document::hasInstance(info[0], info.GetIsolate())) { 121 if (V8Document::hasInstance(info[0], info.GetIsolate())) {
116 promiseMethodPartialOverload3Method(info); 122 promiseMethodPartialOverload3Method(info);
117 return; 123 return;
118 } 124 }
119 break; 125 break;
120 default: 126 default:
121 break; 127 break;
122 } 128 }
123 exceptionState.throwTypeError("No function was found that matched the signat ure provided."); 129 exceptionState.throwTypeError("No function was found that matched the signat ure provided.");
124 v8SetReturnValue(info, exceptionState.reject(ScriptState::current(info.GetIs olate())).v8Value()); 130 v8SetReturnValue(info, exceptionState.reject(ScriptState::current(info.GetIs olate())).v8Value());
131 return;
132 }
133
134 static void staticPromiseMethodPartialOverload2MethodPromise(const v8::FunctionC allbackInfo<v8::Value>& info, ExceptionState& exceptionState)
135 {
136 V8StringResource<> value;
137 {
138 value = info[0];
139 if (!value.prepare(exceptionState))
140 return;
141 }
142 v8SetReturnValue(info, TestPartialInterfaceImplementation3::staticPromiseMet hodPartialOverload(value).v8Value());
125 } 143 }
126 144
127 static void staticPromiseMethodPartialOverload2Method(const v8::FunctionCallback Info<v8::Value>& info) 145 static void staticPromiseMethodPartialOverload2Method(const v8::FunctionCallback Info<v8::Value>& info)
128 { 146 {
129 ExceptionState exceptionState(ExceptionState::ExecutionContext, "staticPromi seMethodPartialOverload", "TestInterface", info.Holder(), info.GetIsolate()); 147 ExceptionState exceptionState(ExceptionState::ExecutionContext, "staticPromi seMethodPartialOverload", "TestInterface", info.Holder(), info.GetIsolate());
130 V8StringResource<> value; 148 staticPromiseMethodPartialOverload2MethodPromise(info, exceptionState);
131 { 149 if (exceptionState.hadException())
132 TOSTRING_VOID_EXCEPTIONSTATE_PROMISE_INTERNAL(value, info[0], exceptionS tate, info, ScriptState::current(info.GetIsolate())); 150 v8SetReturnValue(info, exceptionState.reject(ScriptState::current(info.G etIsolate())).v8Value());
133 }
134 v8SetReturnValue(info, TestPartialInterfaceImplementation3::staticPromiseMet hodPartialOverload(value).v8Value());
135 } 151 }
136 152
137 static void staticPromiseMethodPartialOverloadMethod(const v8::FunctionCallbackI nfo<v8::Value>& info) 153 static void staticPromiseMethodPartialOverloadMethod(const v8::FunctionCallbackI nfo<v8::Value>& info)
138 { 154 {
139 ExceptionState exceptionState(ExceptionState::ExecutionContext, "staticPromi seMethodPartialOverload", "TestInterface", info.Holder(), info.GetIsolate()); 155 ExceptionState exceptionState(ExceptionState::ExecutionContext, "staticPromi seMethodPartialOverload", "TestInterface", info.Holder(), info.GetIsolate());
140 switch (std::min(1, info.Length())) { 156 switch (std::min(1, info.Length())) {
141 case 0: 157 case 0:
142 break; 158 break;
143 case 1: 159 case 1:
144 if (true) { 160 if (true) {
145 staticPromiseMethodPartialOverload2Method(info); 161 staticPromiseMethodPartialOverload2Method(info);
146 return; 162 return;
147 } 163 }
148 break; 164 break;
149 default: 165 default:
150 break; 166 break;
151 } 167 }
152 exceptionState.throwTypeError("No function was found that matched the signat ure provided."); 168 exceptionState.throwTypeError("No function was found that matched the signat ure provided.");
153 v8SetReturnValue(info, exceptionState.reject(ScriptState::current(info.GetIs olate())).v8Value()); 169 v8SetReturnValue(info, exceptionState.reject(ScriptState::current(info.GetIs olate())).v8Value());
170 return;
154 } 171 }
155 172
156 static void partial2VoidMethod2Method(const v8::FunctionCallbackInfo<v8::Value>& info) 173 static void partial2VoidMethod2Method(const v8::FunctionCallbackInfo<v8::Value>& info)
157 { 174 {
158 TestInterfaceImplementation* impl = V8TestInterface::toImpl(info.Holder()); 175 TestInterfaceImplementation* impl = V8TestInterface::toImpl(info.Holder());
159 V8StringResource<> value; 176 V8StringResource<> value;
160 { 177 {
161 TOSTRING_VOID_INTERNAL(value, info[0]); 178 value = info[0];
179 if (!value.prepare())
180 return;
162 } 181 }
163 TestPartialInterfaceImplementation3::partial2VoidMethod(*impl, value); 182 TestPartialInterfaceImplementation3::partial2VoidMethod(*impl, value);
164 } 183 }
165 184
166 static void partial2VoidMethod3Method(const v8::FunctionCallbackInfo<v8::Value>& info) 185 static void partial2VoidMethod3Method(const v8::FunctionCallbackInfo<v8::Value>& info)
167 { 186 {
168 TestInterfaceImplementation* impl = V8TestInterface::toImpl(info.Holder()); 187 TestInterfaceImplementation* impl = V8TestInterface::toImpl(info.Holder());
169 Node* node; 188 Node* node;
170 { 189 {
171 node = V8Node::toImplWithTypeCheck(info.GetIsolate(), info[0]); 190 node = V8Node::toImplWithTypeCheck(info.GetIsolate(), info[0]);
(...skipping 19 matching lines...) Expand all
191 if (true) { 210 if (true) {
192 partial2VoidMethod2Method(info); 211 partial2VoidMethod2Method(info);
193 return; 212 return;
194 } 213 }
195 break; 214 break;
196 default: 215 default:
197 break; 216 break;
198 } 217 }
199 exceptionState.throwTypeError("No function was found that matched the signat ure provided."); 218 exceptionState.throwTypeError("No function was found that matched the signat ure provided.");
200 exceptionState.throwIfNeeded(); 219 exceptionState.throwIfNeeded();
220 return;
201 } 221 }
202 222
203 static void partialVoidTestEnumModulesArgMethodMethod(const v8::FunctionCallback Info<v8::Value>& info) 223 static void partialVoidTestEnumModulesArgMethodMethod(const v8::FunctionCallback Info<v8::Value>& info)
204 { 224 {
205 if (UNLIKELY(info.Length() < 1)) { 225 if (UNLIKELY(info.Length() < 1)) {
206 V8ThrowException::throwException(createMinimumArityTypeErrorForMethod(in fo.GetIsolate(), "partialVoidTestEnumModulesArgMethod", "TestInterface", 1, info .Length()), info.GetIsolate()); 226 V8ThrowException::throwException(createMinimumArityTypeErrorForMethod(in fo.GetIsolate(), "partialVoidTestEnumModulesArgMethod", "TestInterface", 1, info .Length()), info.GetIsolate());
207 return; 227 return;
208 } 228 }
209 TestInterfaceImplementation* impl = V8TestInterface::toImpl(info.Holder()); 229 TestInterfaceImplementation* impl = V8TestInterface::toImpl(info.Holder());
210 V8StringResource<> arg; 230 V8StringResource<> arg;
211 { 231 {
212 TOSTRING_VOID_INTERNAL(arg, info[0]); 232 arg = info[0];
233 if (!arg.prepare())
234 return;
213 String string = arg; 235 String string = arg;
214 if (!(string == "EnumModulesValue1" || string == "EnumModulesValue2")) { 236 if (!(string == "EnumModulesValue1" || string == "EnumModulesValue2")) {
215 V8ThrowException::throwTypeError(info.GetIsolate(), ExceptionMessage s::failedToExecute("partialVoidTestEnumModulesArgMethod", "TestInterface", "para meter 1 ('" + string + "') is not a valid enum value.")); 237 V8ThrowException::throwTypeError(info.GetIsolate(), ExceptionMessage s::failedToExecute("partialVoidTestEnumModulesArgMethod", "TestInterface", "para meter 1 ('" + string + "') is not a valid enum value."));
216 return; 238 return;
217 } 239 }
218 } 240 }
219 TestPartialInterfaceImplementation3::partialVoidTestEnumModulesArgMethod(*im pl, arg); 241 TestPartialInterfaceImplementation3::partialVoidTestEnumModulesArgMethod(*im pl, arg);
220 } 242 }
221 243
222 static void partialVoidTestEnumModulesArgMethodMethodCallback(const v8::Function CallbackInfo<v8::Value>& info) 244 static void partialVoidTestEnumModulesArgMethodMethodCallback(const v8::Function CallbackInfo<v8::Value>& info)
223 { 245 {
224 TRACE_EVENT_SET_SAMPLING_STATE("blink", "DOMMethod"); 246 TRACE_EVENT_SET_SAMPLING_STATE("blink", "DOMMethod");
225 TestInterfaceImplementationPartialV8Internal::partialVoidTestEnumModulesArgM ethodMethod(info); 247 TestInterfaceImplementationPartialV8Internal::partialVoidTestEnumModulesArgM ethodMethod(info);
226 TRACE_EVENT_SET_SAMPLING_STATE("v8", "V8Execution"); 248 TRACE_EVENT_SET_SAMPLING_STATE("v8", "V8Execution");
227 } 249 }
228 250
229 static void partial2StaticVoidMethod2Method(const v8::FunctionCallbackInfo<v8::V alue>& info) 251 static void partial2StaticVoidMethod2Method(const v8::FunctionCallbackInfo<v8::V alue>& info)
230 { 252 {
231 V8StringResource<> value; 253 V8StringResource<> value;
232 { 254 {
233 TOSTRING_VOID_INTERNAL(value, info[0]); 255 value = info[0];
256 if (!value.prepare())
257 return;
234 } 258 }
235 TestPartialInterfaceImplementation3::partial2StaticVoidMethod(value); 259 TestPartialInterfaceImplementation3::partial2StaticVoidMethod(value);
236 } 260 }
237 261
238 static void partial2StaticVoidMethodMethod(const v8::FunctionCallbackInfo<v8::Va lue>& info) 262 static void partial2StaticVoidMethodMethod(const v8::FunctionCallbackInfo<v8::Va lue>& info)
239 { 263 {
240 ExceptionState exceptionState(ExceptionState::ExecutionContext, "partial2Sta ticVoidMethod", "TestInterface", info.Holder(), info.GetIsolate()); 264 ExceptionState exceptionState(ExceptionState::ExecutionContext, "partial2Sta ticVoidMethod", "TestInterface", info.Holder(), info.GetIsolate());
241 switch (std::min(1, info.Length())) { 265 switch (std::min(1, info.Length())) {
242 case 0: 266 case 0:
243 break; 267 break;
244 case 1: 268 case 1:
245 if (true) { 269 if (true) {
246 partial2StaticVoidMethod2Method(info); 270 partial2StaticVoidMethod2Method(info);
247 return; 271 return;
248 } 272 }
249 break; 273 break;
250 default: 274 default:
251 break; 275 break;
252 } 276 }
253 exceptionState.throwTypeError("No function was found that matched the signat ure provided."); 277 exceptionState.throwTypeError("No function was found that matched the signat ure provided.");
254 exceptionState.throwIfNeeded(); 278 exceptionState.throwIfNeeded();
279 return;
255 } 280 }
256 281
257 } // namespace TestInterfaceImplementationPartialV8Internal 282 } // namespace TestInterfaceImplementationPartialV8Internal
258 283
259 void V8TestInterfacePartial::installV8TestInterfaceTemplate(v8::Local<v8::Functi onTemplate> functionTemplate, v8::Isolate* isolate) 284 void V8TestInterfacePartial::installV8TestInterfaceTemplate(v8::Local<v8::Functi onTemplate> functionTemplate, v8::Isolate* isolate)
260 { 285 {
261 V8TestInterface::installV8TestInterfaceTemplate(functionTemplate, isolate); 286 V8TestInterface::installV8TestInterfaceTemplate(functionTemplate, isolate);
262 287
263 v8::Local<v8::Signature> defaultSignature; 288 v8::Local<v8::Signature> defaultSignature;
264 if (!RuntimeEnabledFeatures::featureNameEnabled()) 289 if (!RuntimeEnabledFeatures::featureNameEnabled())
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
307 332
308 ScriptState::Scope scope(scriptState); 333 ScriptState::Scope scope(scriptState);
309 v8::Local<v8::Value> holder = toV8(holderImpl, scriptState->context()->Globa l(), scriptState->isolate()); 334 v8::Local<v8::Value> holder = toV8(holderImpl, scriptState->context()->Globa l(), scriptState->isolate());
310 335
311 v8::Local<v8::Value> valueHandle = v8::Integer::New(scriptState->isolate(), value); 336 v8::Local<v8::Value> valueHandle = v8::Integer::New(scriptState->isolate(), value);
312 v8::Local<v8::Value> argv[] = { valueHandle }; 337 v8::Local<v8::Value> argv[] = { valueHandle };
313 ExceptionState exceptionState(ExceptionState::ExecutionContext, "shortMethod WithShortArgumentImplementedInPrivateScript", "TestInterfaceImplementation", scr iptState->context()->Global(), scriptState->isolate()); 338 ExceptionState exceptionState(ExceptionState::ExecutionContext, "shortMethod WithShortArgumentImplementedInPrivateScript", "TestInterfaceImplementation", scr iptState->context()->Global(), scriptState->isolate());
314 v8::Local<v8::Value> v8Value = PrivateScriptRunner::runDOMMethod(scriptState , scriptStateInUserScript, "TestInterfaceImplementation", "shortMethodWithShortA rgumentImplementedInPrivateScript", holder, 1, argv); 339 v8::Local<v8::Value> v8Value = PrivateScriptRunner::runDOMMethod(scriptState , scriptStateInUserScript, "TestInterfaceImplementation", "shortMethodWithShortA rgumentImplementedInPrivateScript", holder, 1, argv);
315 if (v8Value.IsEmpty()) 340 if (v8Value.IsEmpty())
316 return false; 341 return false;
317 TONATIVE_DEFAULT_EXCEPTIONSTATE(int, cppValue, toInt16(v8Value, exceptionSta te), exceptionState, false); 342 int cppValue = toInt16(v8Value, exceptionState);
343 if (exceptionState.throwIfNeeded())
344 return false;
318 *result = cppValue; 345 *result = cppValue;
319 RELEASE_ASSERT(!exceptionState.hadException()); 346 RELEASE_ASSERT(!exceptionState.hadException());
320 return true; 347 return true;
321 } 348 }
322 349
323 void V8TestInterfacePartial::initialize() 350 void V8TestInterfacePartial::initialize()
324 { 351 {
325 // Should be invoked from initModules. 352 // Should be invoked from initModules.
326 V8TestInterface::updateWrapperTypeInfo( 353 V8TestInterface::updateWrapperTypeInfo(
327 &V8TestInterfacePartial::installV8TestInterfaceTemplate, 354 &V8TestInterfacePartial::installV8TestInterfaceTemplate,
328 &V8TestInterfacePartial::installConditionallyEnabledMethods); 355 &V8TestInterfacePartial::installConditionallyEnabledMethods);
329 V8TestInterface::registerVoidMethodPartialOverloadMethodForPartialInterface( &TestInterfaceImplementationPartialV8Internal::voidMethodPartialOverloadMethod); 356 V8TestInterface::registerVoidMethodPartialOverloadMethodForPartialInterface( &TestInterfaceImplementationPartialV8Internal::voidMethodPartialOverloadMethod);
330 V8TestInterface::registerStaticVoidMethodPartialOverloadMethodForPartialInte rface(&TestInterfaceImplementationPartialV8Internal::staticVoidMethodPartialOver loadMethod); 357 V8TestInterface::registerStaticVoidMethodPartialOverloadMethodForPartialInte rface(&TestInterfaceImplementationPartialV8Internal::staticVoidMethodPartialOver loadMethod);
331 V8TestInterface::registerPromiseMethodPartialOverloadMethodForPartialInterfa ce(&TestInterfaceImplementationPartialV8Internal::promiseMethodPartialOverloadMe thod); 358 V8TestInterface::registerPromiseMethodPartialOverloadMethodForPartialInterfa ce(&TestInterfaceImplementationPartialV8Internal::promiseMethodPartialOverloadMe thod);
332 V8TestInterface::registerStaticPromiseMethodPartialOverloadMethodForPartialI nterface(&TestInterfaceImplementationPartialV8Internal::staticPromiseMethodParti alOverloadMethod); 359 V8TestInterface::registerStaticPromiseMethodPartialOverloadMethodForPartialI nterface(&TestInterfaceImplementationPartialV8Internal::staticPromiseMethodParti alOverloadMethod);
333 V8TestInterface::registerPartial2VoidMethodMethodForPartialInterface(&TestIn terfaceImplementationPartialV8Internal::partial2VoidMethodMethod); 360 V8TestInterface::registerPartial2VoidMethodMethodForPartialInterface(&TestIn terfaceImplementationPartialV8Internal::partial2VoidMethodMethod);
334 V8TestInterface::registerPartial2StaticVoidMethodMethodForPartialInterface(& TestInterfaceImplementationPartialV8Internal::partial2StaticVoidMethodMethod); 361 V8TestInterface::registerPartial2StaticVoidMethodMethodForPartialInterface(& TestInterfaceImplementationPartialV8Internal::partial2StaticVoidMethodMethod);
335 } 362 }
336 363
337 } // namespace blink 364 } // namespace blink
338 #endif // ENABLE(CONDITION) 365 #endif // ENABLE(CONDITION)
OLDNEW
« no previous file with comments | « Source/bindings/tests/results/modules/V8TestInterface5.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698