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

Side by Side Diff: third_party/WebKit/Source/bindings/templates/callback_function.h.tmpl

Issue 2709983004: WIP bindings: Add support for the record<K,V> WebIDL type. (Closed)
Patch Set: Rebased patch using NativeValueTraits for IDL types Created 3 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
OLDNEW
1 {% filter format_blink_cpp_source_code %} 1 {% filter format_blink_cpp_source_code %}
2 2
3 {% include 'copyright_block.txt' %} 3 {% include 'copyright_block.txt' %}
4 4
5 #ifndef {{cpp_class}}_h 5 #ifndef {{cpp_class}}_h
6 #define {{cpp_class}}_h 6 #define {{cpp_class}}_h
7 7
8 {% for filename in header_includes %} 8 {% for filename in header_includes %}
9 #include "{{filename}}" 9 #include "{{filename}}"
10 {% endfor %} 10 {% endfor %}
(...skipping 20 matching lines...) Expand all
31 return m_callback.newLocal(isolate); 31 return m_callback.newLocal(isolate);
32 } 32 }
33 33
34 private: 34 private:
35 {{cpp_class}}(ScriptState*, v8::Local<v8::Function>); 35 {{cpp_class}}(ScriptState*, v8::Local<v8::Function>);
36 36
37 RefPtr<ScriptState> m_scriptState; 37 RefPtr<ScriptState> m_scriptState;
38 TraceWrapperV8Reference<v8::Function> m_callback; 38 TraceWrapperV8Reference<v8::Function> m_callback;
39 }; 39 };
40 40
41 template <>
42 struct NativeValueTraits<{{cpp_class}}> {
43 using ImplType = {{cpp_class}};
44 {{exported}}static {{cpp_class}}* nativeValue(v8::Isolate*, v8::Local<v8::Valu e>, ExceptionState&);
45 };
46
41 } // namespace blink 47 } // namespace blink
42 48
43 #endif // {{cpp_class}}_h 49 #endif // {{cpp_class}}_h
44 50
45 {% endfilter %}{# format_blink_cpp_source_code #} 51 {% endfilter %}{# format_blink_cpp_source_code #}
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698