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

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

Issue 772743003: Move the v8::Isolate* parameter to the first parameter of various binding methods in third_party/We… (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years 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 293 matching lines...) Expand 10 before | Expand all | Expand 10 after
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::Handle<v8::FunctionTemplate> funct ionTemplate, 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(functionTempl ate, "TestTypedefs", v8::Local<v8::FunctionTemplate>(), V8TestTypedefs::internal FieldCount, 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 isolate);
319 functionTemplate->SetCallHandler(V8TestTypedefs::constructorCallback); 318 functionTemplate->SetCallHandler(V8TestTypedefs::constructorCallback);
320 functionTemplate->SetLength(1); 319 functionTemplate->SetLength(1);
321 v8::Local<v8::ObjectTemplate> instanceTemplate = functionTemplate->InstanceT emplate(); 320 v8::Local<v8::ObjectTemplate> instanceTemplate = functionTemplate->InstanceT emplate();
322 ALLOW_UNUSED_LOCAL(instanceTemplate); 321 ALLOW_UNUSED_LOCAL(instanceTemplate);
323 v8::Local<v8::ObjectTemplate> prototypeTemplate = functionTemplate->Prototyp eTemplate(); 322 v8::Local<v8::ObjectTemplate> prototypeTemplate = functionTemplate->Prototyp eTemplate();
324 ALLOW_UNUSED_LOCAL(prototypeTemplate); 323 ALLOW_UNUSED_LOCAL(prototypeTemplate);
325 324
326 // Custom toString template 325 // Custom toString template
327 functionTemplate->Set(v8AtomicString(isolate, "toString"), V8PerIsolateData: :from(isolate)->toStringTemplate()); 326 functionTemplate->Set(v8AtomicString(isolate, "toString"), V8PerIsolateData: :from(isolate)->toStringTemplate());
328 } 327 }
(...skipping 28 matching lines...) Expand all
357 scriptWrappable->toImpl<TestTypedefs>()->deref(); 356 scriptWrappable->toImpl<TestTypedefs>()->deref();
358 } 357 }
359 358
360 template<> 359 template<>
361 v8::Handle<v8::Value> toV8NoInline(TestTypedefs* impl, v8::Handle<v8::Object> cr eationContext, v8::Isolate* isolate) 360 v8::Handle<v8::Value> toV8NoInline(TestTypedefs* impl, v8::Handle<v8::Object> cr eationContext, v8::Isolate* isolate)
362 { 361 {
363 return toV8(impl, creationContext, isolate); 362 return toV8(impl, creationContext, isolate);
364 } 363 }
365 364
366 } // namespace blink 365 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698