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: third_party/WebKit/Source/bindings/tests/results/core/V8TestInterface2.h

Issue 2653153003: Emit trace(Visitor*) rather than a templated trace(). (Closed)
Patch Set: Created 3 years, 10 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
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. 5 // This file has been auto-generated by code_generator_v8.py.
6 // DO NOT MODIFY! 6 // DO NOT MODIFY!
7 7
8 // This file has been generated from the Jinja2 template in 8 // This file has been generated from the Jinja2 template in
9 // third_party/WebKit/Source/bindings/templates/interface.h.tmpl 9 // third_party/WebKit/Source/bindings/templates/interface.h.tmpl
10 10
(...skipping 16 matching lines...) Expand all
27 STATIC_ONLY(V8TestInterface2); 27 STATIC_ONLY(V8TestInterface2);
28 public: 28 public:
29 CORE_EXPORT static bool hasInstance(v8::Local<v8::Value>, v8::Isolate*); 29 CORE_EXPORT static bool hasInstance(v8::Local<v8::Value>, v8::Isolate*);
30 static v8::Local<v8::Object> findInstanceInPrototypeChain(v8::Local<v8::Value> , v8::Isolate*); 30 static v8::Local<v8::Object> findInstanceInPrototypeChain(v8::Local<v8::Value> , v8::Isolate*);
31 CORE_EXPORT static v8::Local<v8::FunctionTemplate> domTemplate(v8::Isolate*, c onst DOMWrapperWorld&); 31 CORE_EXPORT static v8::Local<v8::FunctionTemplate> domTemplate(v8::Isolate*, c onst DOMWrapperWorld&);
32 static TestInterface2* toImpl(v8::Local<v8::Object> object) { 32 static TestInterface2* toImpl(v8::Local<v8::Object> object) {
33 return toScriptWrappable(object)->toImpl<TestInterface2>(); 33 return toScriptWrappable(object)->toImpl<TestInterface2>();
34 } 34 }
35 CORE_EXPORT static TestInterface2* toImplWithTypeCheck(v8::Isolate*, v8::Local <v8::Value>); 35 CORE_EXPORT static TestInterface2* toImplWithTypeCheck(v8::Isolate*, v8::Local <v8::Value>);
36 CORE_EXPORT static WrapperTypeInfo wrapperTypeInfo; 36 CORE_EXPORT static WrapperTypeInfo wrapperTypeInfo;
37 template<typename VisitorDispatcher> 37 static void trace(Visitor* visitor, ScriptWrappable* scriptWrappable) {
38 static void trace(VisitorDispatcher visitor, ScriptWrappable* scriptWrappable) {
39 visitor->trace(scriptWrappable->toImpl<TestInterface2>()); 38 visitor->trace(scriptWrappable->toImpl<TestInterface2>());
40 } 39 }
41 static void traceWrappers(WrapperVisitor* visitor, ScriptWrappable* scriptWrap pable) { 40 static void traceWrappers(WrapperVisitor* visitor, ScriptWrappable* scriptWrap pable) {
42 visitor->traceWrappers(scriptWrappable->toImpl<TestInterface2>()); 41 visitor->traceWrappers(scriptWrappable->toImpl<TestInterface2>());
43 } 42 }
44 static void visitDOMWrapper(v8::Isolate*, ScriptWrappable*, const v8::Persiste nt<v8::Object>&); 43 static void visitDOMWrapper(v8::Isolate*, ScriptWrappable*, const v8::Persiste nt<v8::Object>&);
45 static void constructorCallback(const v8::FunctionCallbackInfo<v8::Value>&); 44 static void constructorCallback(const v8::FunctionCallbackInfo<v8::Value>&);
46 static const int internalFieldCount = v8DefaultWrapperInternalFieldCount + 0; 45 static const int internalFieldCount = v8DefaultWrapperInternalFieldCount + 0;
47 CORE_EXPORT static void preparePrototypeAndInterfaceObject(v8::Local<v8::Conte xt>, const DOMWrapperWorld&, v8::Local<v8::Object> prototypeObject, v8::Local<v8 ::Function> interfaceObject, v8::Local<v8::FunctionTemplate> interfaceTemplate) {} 46 CORE_EXPORT static void preparePrototypeAndInterfaceObject(v8::Local<v8::Conte xt>, const DOMWrapperWorld&, v8::Local<v8::Object> prototypeObject, v8::Local<v8 ::Function> interfaceObject, v8::Local<v8::FunctionTemplate> interfaceTemplate) {}
48 CORE_EXPORT static void updateWrapperTypeInfo(InstallTemplateFunction, Prepare PrototypeAndInterfaceObjectFunction); 47 CORE_EXPORT static void updateWrapperTypeInfo(InstallTemplateFunction, Prepare PrototypeAndInterfaceObjectFunction);
49 CORE_EXPORT static void installV8TestInterface2Template(v8::Isolate*, const DO MWrapperWorld&, v8::Local<v8::FunctionTemplate> interfaceTemplate); 48 CORE_EXPORT static void installV8TestInterface2Template(v8::Isolate*, const DO MWrapperWorld&, v8::Local<v8::FunctionTemplate> interfaceTemplate);
50 49
51 private: 50 private:
52 static InstallTemplateFunction installV8TestInterface2TemplateFunction; 51 static InstallTemplateFunction installV8TestInterface2TemplateFunction;
53 }; 52 };
54 53
55 template <> 54 template <>
56 struct V8TypeOf<TestInterface2> { 55 struct V8TypeOf<TestInterface2> {
57 typedef V8TestInterface2 Type; 56 typedef V8TestInterface2 Type;
58 }; 57 };
59 58
60 } // namespace blink 59 } // namespace blink
61 60
62 #endif // V8TestInterface2_h 61 #endif // V8TestInterface2_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698