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

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

Issue 478243002: bindings: Adds virtual ScriptWrappable::wrap method. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Synced and sent out to the code review. Created 6 years, 3 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 "V8TestInterfaceWillBeGarbageCollected.h" 8 #include "V8TestInterfaceWillBeGarbageCollected.h"
9 9
10 #include "bindings/core/v8/ExceptionState.h" 10 #include "bindings/core/v8/ExceptionState.h"
(...skipping 20 matching lines...) Expand all
31 31
32 void webCoreInitializeScriptWrappableForInterface(blink::TestInterfaceWillBeGarb ageCollected* object) 32 void webCoreInitializeScriptWrappableForInterface(blink::TestInterfaceWillBeGarb ageCollected* object)
33 { 33 {
34 blink::initializeScriptWrappableForInterface(object); 34 blink::initializeScriptWrappableForInterface(object);
35 } 35 }
36 36
37 namespace blink { 37 namespace blink {
38 38
39 const WrapperTypeInfo V8TestInterfaceWillBeGarbageCollected::wrapperTypeInfo = { gin::kEmbedderBlink, V8TestInterfaceWillBeGarbageCollected::domTemplate, V8Test InterfaceWillBeGarbageCollected::refObject, V8TestInterfaceWillBeGarbageCollecte d::derefObject, V8TestInterfaceWillBeGarbageCollected::createPersistentHandle, 0 , V8TestInterfaceWillBeGarbageCollected::toEventTarget, 0, V8TestInterfaceWillBe GarbageCollected::installConditionallyEnabledMethods, V8TestInterfaceWillBeGarba geCollected::installConditionallyEnabledProperties, &V8EventTarget::wrapperTypeI nfo, WrapperTypeObjectPrototype, WillBeGarbageCollectedObject }; 39 const WrapperTypeInfo V8TestInterfaceWillBeGarbageCollected::wrapperTypeInfo = { gin::kEmbedderBlink, V8TestInterfaceWillBeGarbageCollected::domTemplate, V8Test InterfaceWillBeGarbageCollected::refObject, V8TestInterfaceWillBeGarbageCollecte d::derefObject, V8TestInterfaceWillBeGarbageCollected::createPersistentHandle, 0 , V8TestInterfaceWillBeGarbageCollected::toEventTarget, 0, V8TestInterfaceWillBe GarbageCollected::installConditionallyEnabledMethods, V8TestInterfaceWillBeGarba geCollected::installConditionallyEnabledProperties, &V8EventTarget::wrapperTypeI nfo, WrapperTypeObjectPrototype, WillBeGarbageCollectedObject };
40 40
41 // The definition of TestInterfaceWillBeGarbageCollected's WrapperTypeInfo. If T estInterfaceWillBeGarbageCollected inherits
42 // from ScriptWrappable, you have to write DEFINE_WRAPPERTYPEINFO macro in the
43 // class definition. Otherwise, you have to write NotScriptWrappable in the IDL
44 // file as an extended attribute in order to let IDL compiler know that
45 // TestInterfaceWillBeGarbageCollected doesn't inherit from ScriptWrappable. Not e that
46 // NotScriptWrappable is inheritable.
47 const WrapperTypeInfo& TestInterfaceWillBeGarbageCollected::s_wrapperTypeInfo = V8TestInterfaceWillBeGarbageCollected::wrapperTypeInfo;
48
41 namespace TestInterfaceWillBeGarbageCollectedV8Internal { 49 namespace TestInterfaceWillBeGarbageCollectedV8Internal {
42 50
43 template <typename T> void V8_USE(T) { } 51 template <typename T> void V8_USE(T) { }
44 52
45 static void attr1AttributeGetter(const v8::PropertyCallbackInfo<v8::Value>& info ) 53 static void attr1AttributeGetter(const v8::PropertyCallbackInfo<v8::Value>& info )
46 { 54 {
47 v8::Handle<v8::Object> holder = info.Holder(); 55 v8::Handle<v8::Object> holder = info.Holder();
48 TestInterfaceWillBeGarbageCollected* impl = V8TestInterfaceWillBeGarbageColl ected::toNative(holder); 56 TestInterfaceWillBeGarbageCollected* impl = V8TestInterfaceWillBeGarbageColl ected::toNative(holder);
49 v8SetReturnValueFast(info, WTF::getPtr(impl->attr1()), impl); 57 v8SetReturnValueFast(info, WTF::getPtr(impl->attr1()), impl);
50 } 58 }
(...skipping 224 matching lines...) Expand 10 before | Expand all | Expand 10 after
275 #endif 283 #endif
276 } 284 }
277 285
278 template<> 286 template<>
279 v8::Handle<v8::Value> toV8NoInline(TestInterfaceWillBeGarbageCollected* impl, v8 ::Handle<v8::Object> creationContext, v8::Isolate* isolate) 287 v8::Handle<v8::Value> toV8NoInline(TestInterfaceWillBeGarbageCollected* impl, v8 ::Handle<v8::Object> creationContext, v8::Isolate* isolate)
280 { 288 {
281 return toV8(impl, creationContext, isolate); 289 return toV8(impl, creationContext, isolate);
282 } 290 }
283 291
284 } // namespace blink 292 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698