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

Side by Side Diff: Source/bindings/tests/results/core/V8TestInterfaceEventTarget.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 "V8TestInterfaceEventTarget.h" 8 #include "V8TestInterfaceEventTarget.h"
9 9
10 #include "bindings/core/v8/ExceptionState.h" 10 #include "bindings/core/v8/ExceptionState.h"
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after
68 result->Inherit(V8TestInterfaceEventTarget::domTemplate(isolate)); 68 result->Inherit(V8TestInterfaceEventTarget::domTemplate(isolate));
69 data->setDOMTemplate(&domTemplateKey, result); 69 data->setDOMTemplate(&domTemplateKey, result);
70 return result; 70 return result;
71 } 71 }
72 72
73 static void installV8TestInterfaceEventTargetTemplate(v8::Handle<v8::FunctionTem plate> functionTemplate, v8::Isolate* isolate) 73 static void installV8TestInterfaceEventTargetTemplate(v8::Handle<v8::FunctionTem plate> functionTemplate, v8::Isolate* isolate)
74 { 74 {
75 functionTemplate->ReadOnlyPrototype(); 75 functionTemplate->ReadOnlyPrototype();
76 76
77 v8::Local<v8::Signature> defaultSignature; 77 v8::Local<v8::Signature> defaultSignature;
78 defaultSignature = V8DOMConfiguration::installDOMClassTemplate(functionTempl ate, "TestInterfaceEventTarget", V8EventTarget::domTemplate(isolate), V8TestInte rfaceEventTarget::internalFieldCount, 78 defaultSignature = V8DOMConfiguration::installDOMClassTemplate(isolate, func tionTemplate, "TestInterfaceEventTarget", V8EventTarget::domTemplate(isolate), V 8TestInterfaceEventTarget::internalFieldCount,
79 0, 0, 79 0, 0,
80 0, 0, 80 0, 0,
81 0, 0, 81 0, 0);
82 isolate);
83 v8::Local<v8::ObjectTemplate> instanceTemplate = functionTemplate->InstanceT emplate(); 82 v8::Local<v8::ObjectTemplate> instanceTemplate = functionTemplate->InstanceT emplate();
84 ALLOW_UNUSED_LOCAL(instanceTemplate); 83 ALLOW_UNUSED_LOCAL(instanceTemplate);
85 v8::Local<v8::ObjectTemplate> prototypeTemplate = functionTemplate->Prototyp eTemplate(); 84 v8::Local<v8::ObjectTemplate> prototypeTemplate = functionTemplate->Prototyp eTemplate();
86 ALLOW_UNUSED_LOCAL(prototypeTemplate); 85 ALLOW_UNUSED_LOCAL(prototypeTemplate);
87 86
88 // Custom toString template 87 // Custom toString template
89 functionTemplate->Set(v8AtomicString(isolate, "toString"), V8PerIsolateData: :from(isolate)->toStringTemplate()); 88 functionTemplate->Set(v8AtomicString(isolate, "toString"), V8PerIsolateData: :from(isolate)->toStringTemplate());
90 } 89 }
91 90
92 v8::Handle<v8::FunctionTemplate> V8TestInterfaceEventTarget::domTemplate(v8::Iso late* isolate) 91 v8::Handle<v8::FunctionTemplate> V8TestInterfaceEventTarget::domTemplate(v8::Iso late* isolate)
(...skipping 30 matching lines...) Expand all
123 #endif 122 #endif
124 } 123 }
125 124
126 template<> 125 template<>
127 v8::Handle<v8::Value> toV8NoInline(TestInterfaceEventTarget* impl, v8::Handle<v8 ::Object> creationContext, v8::Isolate* isolate) 126 v8::Handle<v8::Value> toV8NoInline(TestInterfaceEventTarget* impl, v8::Handle<v8 ::Object> creationContext, v8::Isolate* isolate)
128 { 127 {
129 return toV8(impl, creationContext, isolate); 128 return toV8(impl, creationContext, isolate);
130 } 129 }
131 130
132 } // namespace blink 131 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698