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

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

Issue 331593006: Decrease the binary size by 50 KB by outlining V8XXX::wrap() (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 6 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 "V8TestInterfaceConstructor.h" 8 #include "V8TestInterfaceConstructor.h"
9 9
10 #include "RuntimeEnabledFeatures.h" 10 #include "RuntimeEnabledFeatures.h"
(...skipping 197 matching lines...) Expand 10 before | Expand all | Expand 10 after
208 v8::Handle<v8::Object> V8TestInterfaceConstructor::findInstanceInPrototypeChain( v8::Handle<v8::Value> v8Value, v8::Isolate* isolate) 208 v8::Handle<v8::Object> V8TestInterfaceConstructor::findInstanceInPrototypeChain( v8::Handle<v8::Value> v8Value, v8::Isolate* isolate)
209 { 209 {
210 return V8PerIsolateData::from(isolate)->findInstanceInPrototypeChain(&wrappe rTypeInfo, v8Value); 210 return V8PerIsolateData::from(isolate)->findInstanceInPrototypeChain(&wrappe rTypeInfo, v8Value);
211 } 211 }
212 212
213 TestInterfaceConstructor* V8TestInterfaceConstructor::toNativeWithTypeCheck(v8:: Isolate* isolate, v8::Handle<v8::Value> value) 213 TestInterfaceConstructor* V8TestInterfaceConstructor::toNativeWithTypeCheck(v8:: Isolate* isolate, v8::Handle<v8::Value> value)
214 { 214 {
215 return hasInstance(value, isolate) ? fromInternalPointer(v8::Handle<v8::Obje ct>::Cast(value)->GetAlignedPointerFromInternalField(v8DOMWrapperObjectIndex)) : 0; 215 return hasInstance(value, isolate) ? fromInternalPointer(v8::Handle<v8::Obje ct>::Cast(value)->GetAlignedPointerFromInternalField(v8DOMWrapperObjectIndex)) : 0;
216 } 216 }
217 217
218 v8::Handle<v8::Object> wrap(TestInterfaceConstructor* impl, v8::Handle<v8::Objec t> creationContext, v8::Isolate* isolate)
219 {
220 ASSERT(impl);
221 ASSERT(!DOMDataStore::containsWrapper<V8TestInterfaceConstructor>(impl, isol ate));
222 return V8TestInterfaceConstructor::createWrapper(impl, creationContext, isol ate);
223 }
224
218 v8::Handle<v8::Object> V8TestInterfaceConstructor::createWrapper(PassRefPtr<Test InterfaceConstructor> impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate) 225 v8::Handle<v8::Object> V8TestInterfaceConstructor::createWrapper(PassRefPtr<Test InterfaceConstructor> impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate)
219 { 226 {
220 ASSERT(impl); 227 ASSERT(impl);
221 ASSERT(!DOMDataStore::containsWrapper<V8TestInterfaceConstructor>(impl.get() , isolate)); 228 ASSERT(!DOMDataStore::containsWrapper<V8TestInterfaceConstructor>(impl.get() , isolate));
222 if (ScriptWrappable::wrapperCanBeStoredInObject(impl.get())) { 229 if (ScriptWrappable::wrapperCanBeStoredInObject(impl.get())) {
223 const WrapperTypeInfo* actualInfo = ScriptWrappable::fromObject(impl.get ())->typeInfo(); 230 const WrapperTypeInfo* actualInfo = ScriptWrappable::fromObject(impl.get ())->typeInfo();
224 // Might be a XXXConstructor::wrapperTypeInfo instead of an XXX::wrapper TypeInfo. These will both have 231 // Might be a XXXConstructor::wrapperTypeInfo instead of an XXX::wrapper TypeInfo. These will both have
225 // the same object de-ref functions, though, so use that as the basis of the check. 232 // the same object de-ref functions, though, so use that as the basis of the check.
226 RELEASE_ASSERT_WITH_SECURITY_IMPLICATION(actualInfo->derefObjectFunction == wrapperTypeInfo.derefObjectFunction); 233 RELEASE_ASSERT_WITH_SECURITY_IMPLICATION(actualInfo->derefObjectFunction == wrapperTypeInfo.derefObjectFunction);
227 } 234 }
(...skipping 12 matching lines...) Expand all
240 fromInternalPointer(object)->deref(); 247 fromInternalPointer(object)->deref();
241 } 248 }
242 249
243 template<> 250 template<>
244 v8::Handle<v8::Value> toV8NoInline(TestInterfaceConstructor* impl, v8::Handle<v8 ::Object> creationContext, v8::Isolate* isolate) 251 v8::Handle<v8::Value> toV8NoInline(TestInterfaceConstructor* impl, v8::Handle<v8 ::Object> creationContext, v8::Isolate* isolate)
245 { 252 {
246 return toV8(impl, creationContext, isolate); 253 return toV8(impl, creationContext, isolate);
247 } 254 }
248 255
249 } // namespace WebCore 256 } // namespace WebCore
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698