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

Side by Side Diff: Source/bindings/tests/results/core/V8TestTypedefs.cpp

Issue 823093002: [bindings] Make v8_class::install[v8_class]Template use Local<>. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 12 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
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 #include "V8TestTypedefs.h" 8 #include "V8TestTypedefs.h"
9 9
10 #include "bindings/core/v8/ExceptionState.h" 10 #include "bindings/core/v8/ExceptionState.h"
(...skipping 288 matching lines...) Expand 10 before | Expand all | Expand 10 after
299 } 299 }
300 300
301 if (ConstructorMode::current(info.GetIsolate()) == ConstructorMode::WrapExis tingObject) { 301 if (ConstructorMode::current(info.GetIsolate()) == ConstructorMode::WrapExis tingObject) {
302 v8SetReturnValue(info, info.Holder()); 302 v8SetReturnValue(info, info.Holder());
303 return; 303 return;
304 } 304 }
305 305
306 TestTypedefsV8Internal::constructor(info); 306 TestTypedefsV8Internal::constructor(info);
307 } 307 }
308 308
309 static void installV8TestTypedefsTemplate(v8::Handle<v8::FunctionTemplate> funct ionTemplate, v8::Isolate* isolate) 309 static void installV8TestTypedefsTemplate(v8::Local<v8::FunctionTemplate> functi onTemplate, v8::Isolate* isolate)
310 { 310 {
311 functionTemplate->ReadOnlyPrototype(); 311 functionTemplate->ReadOnlyPrototype();
312 312
313 v8::Local<v8::Signature> defaultSignature; 313 v8::Local<v8::Signature> defaultSignature;
314 defaultSignature = V8DOMConfiguration::installDOMClassTemplate(isolate, func tionTemplate, "TestTypedefs", v8::Local<v8::FunctionTemplate>(), V8TestTypedefs: :internalFieldCount, 314 defaultSignature = V8DOMConfiguration::installDOMClassTemplate(isolate, func tionTemplate, "TestTypedefs", v8::Local<v8::FunctionTemplate>(), V8TestTypedefs: :internalFieldCount,
315 V8TestTypedefsAttributes, WTF_ARRAY_LENGTH(V8TestTypedefsAttributes), 315 V8TestTypedefsAttributes, WTF_ARRAY_LENGTH(V8TestTypedefsAttributes),
316 0, 0, 316 0, 0,
317 V8TestTypedefsMethods, WTF_ARRAY_LENGTH(V8TestTypedefsMethods)); 317 V8TestTypedefsMethods, WTF_ARRAY_LENGTH(V8TestTypedefsMethods));
318 functionTemplate->SetCallHandler(V8TestTypedefs::constructorCallback); 318 functionTemplate->SetCallHandler(V8TestTypedefs::constructorCallback);
319 functionTemplate->SetLength(1); 319 functionTemplate->SetLength(1);
(...skipping 30 matching lines...) Expand all
350 { 350 {
351 scriptWrappable->toImpl<TestTypedefs>()->ref(); 351 scriptWrappable->toImpl<TestTypedefs>()->ref();
352 } 352 }
353 353
354 void V8TestTypedefs::derefObject(ScriptWrappable* scriptWrappable) 354 void V8TestTypedefs::derefObject(ScriptWrappable* scriptWrappable)
355 { 355 {
356 scriptWrappable->toImpl<TestTypedefs>()->deref(); 356 scriptWrappable->toImpl<TestTypedefs>()->deref();
357 } 357 }
358 358
359 } // namespace blink 359 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698