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

Side by Side Diff: Source/bindings/tests/results/V8TestInterfaceEventTarget.cpp

Issue 214283002: Bindings: rename |jsValue| => |v8Value| (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Reupload Created 6 years, 9 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 | Annotate | Revision Log
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 "RuntimeEnabledFeatures.h" 10 #include "RuntimeEnabledFeatures.h"
(...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after
115 if (!result.IsEmpty()) 115 if (!result.IsEmpty())
116 return result; 116 return result;
117 117
118 TRACE_EVENT_SCOPED_SAMPLING_STATE("Blink", "BuildDOMTemplate"); 118 TRACE_EVENT_SCOPED_SAMPLING_STATE("Blink", "BuildDOMTemplate");
119 result = v8::FunctionTemplate::New(isolate, V8ObjectConstructor::isValidCons tructorMode); 119 result = v8::FunctionTemplate::New(isolate, V8ObjectConstructor::isValidCons tructorMode);
120 configureV8TestInterfaceEventTargetTemplate(result, isolate); 120 configureV8TestInterfaceEventTargetTemplate(result, isolate);
121 data->setDOMTemplate(const_cast<WrapperTypeInfo*>(&wrapperTypeInfo), result) ; 121 data->setDOMTemplate(const_cast<WrapperTypeInfo*>(&wrapperTypeInfo), result) ;
122 return result; 122 return result;
123 } 123 }
124 124
125 bool V8TestInterfaceEventTarget::hasInstance(v8::Handle<v8::Value> jsValue, v8:: Isolate* isolate) 125 bool V8TestInterfaceEventTarget::hasInstance(v8::Handle<v8::Value> v8Value, v8:: Isolate* isolate)
126 { 126 {
127 return V8PerIsolateData::from(isolate)->hasInstance(&wrapperTypeInfo, jsValu e); 127 return V8PerIsolateData::from(isolate)->hasInstance(&wrapperTypeInfo, v8Valu e);
128 } 128 }
129 129
130 v8::Handle<v8::Object> V8TestInterfaceEventTarget::findInstanceInPrototypeChain( v8::Handle<v8::Value> jsValue, v8::Isolate* isolate) 130 v8::Handle<v8::Object> V8TestInterfaceEventTarget::findInstanceInPrototypeChain( v8::Handle<v8::Value> v8Value, v8::Isolate* isolate)
131 { 131 {
132 return V8PerIsolateData::from(isolate)->findInstanceInPrototypeChain(&wrappe rTypeInfo, jsValue); 132 return V8PerIsolateData::from(isolate)->findInstanceInPrototypeChain(&wrappe rTypeInfo, v8Value);
133 } 133 }
134 134
135 TestInterfaceEventTarget* V8TestInterfaceEventTarget::toNativeWithTypeCheck(v8:: Isolate* isolate, v8::Handle<v8::Value> value) 135 TestInterfaceEventTarget* V8TestInterfaceEventTarget::toNativeWithTypeCheck(v8:: Isolate* isolate, v8::Handle<v8::Value> value)
136 { 136 {
137 return hasInstance(value, isolate) ? fromInternalPointer(v8::Handle<v8::Obje ct>::Cast(value)->GetAlignedPointerFromInternalField(v8DOMWrapperObjectIndex)) : 0; 137 return hasInstance(value, isolate) ? fromInternalPointer(v8::Handle<v8::Obje ct>::Cast(value)->GetAlignedPointerFromInternalField(v8DOMWrapperObjectIndex)) : 0;
138 } 138 }
139 139
140 EventTarget* V8TestInterfaceEventTarget::toEventTarget(v8::Handle<v8::Object> ob ject) 140 EventTarget* V8TestInterfaceEventTarget::toEventTarget(v8::Handle<v8::Object> ob ject)
141 { 141 {
142 return toNative(object); 142 return toNative(object);
(...skipping 24 matching lines...) Expand all
167 fromInternalPointer(object)->deref(); 167 fromInternalPointer(object)->deref();
168 } 168 }
169 169
170 template<> 170 template<>
171 v8::Handle<v8::Value> toV8NoInline(TestInterfaceEventTarget* impl, v8::Handle<v8 ::Object> creationContext, v8::Isolate* isolate) 171 v8::Handle<v8::Value> toV8NoInline(TestInterfaceEventTarget* impl, v8::Handle<v8 ::Object> creationContext, v8::Isolate* isolate)
172 { 172 {
173 return toV8(impl, creationContext, isolate); 173 return toV8(impl, creationContext, isolate);
174 } 174 }
175 175
176 } // namespace WebCore 176 } // namespace WebCore
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698