Index: Source/bindings/templates/partial_interface.h |
diff --git a/Source/bindings/templates/partial_interface.h b/Source/bindings/templates/partial_interface.h |
new file mode 100644 |
index 0000000000000000000000000000000000000000..b2f817371431dd00814533be8e4f2b403fa4027c |
--- /dev/null |
+++ b/Source/bindings/templates/partial_interface.h |
@@ -0,0 +1,49 @@ |
+// Copyright 2014 The Chromium Authors. All rights reserved. |
+// Use of this source code is governed by a BSD-style license that can be |
+// found in the LICENSE file. |
+ |
+// This file has been auto-generated by {{code_generator}}. DO NOT MODIFY! |
+ |
+#ifndef {{v8_class}}Partial_h |
+#define {{v8_class}}Partial_h |
+ |
+{% filter conditional(conditional_string) %} |
haraken
2014/10/09 04:24:01
Do we need to support conditional? Conditional is
tasak
2014/10/10 07:52:24
I think, this is another issue, because I found se
|
+{% for filename in header_includes %} |
+#include "{{filename}}" |
+{% endfor %} |
+ |
+namespace blink { |
+ |
+class {{v8_class}}Partial { |
+public: |
+ static void initialize(); |
+ static v8::Handle<v8::FunctionTemplate> domTemplate(v8::Isolate*); |
tasak
2014/10/10 07:52:24
We don't need to generate domTemplate for partial
|
+ {% for method in methods if method.is_custom %} |
+ {% filter conditional(method.conditional_string) %} |
haraken
2014/10/09 04:24:02
Ditto.
|
+ static void {{method.name}}MethodCustom(const v8::FunctionCallbackInfo<v8::Value>&); |
+ {% endfilter %} |
+ {% endfor %} |
+ {% for attribute in attributes %} |
+ {% if attribute.has_custom_getter %}{# FIXME: and not attribute.implemented_by #} |
+ {% filter conditional(attribute.conditional_string) %} |
+ static void {{attribute.name}}AttributeGetterCustom(const v8::PropertyCallbackInfo<v8::Value>&); |
+ {% endfilter %} |
+ {% endif %} |
+ {% if attribute.has_custom_setter %}{# FIXME: and not attribute.implemented_by #} |
+ {% filter conditional(attribute.conditional_string) %} |
+ static void {{attribute.name}}AttributeSetterCustom(v8::Local<v8::Value>, const v8::PropertyCallbackInfo<void>&); |
+ {% endfilter %} |
+ {% endif %} |
+ {% endfor %} |
+ {% if has_custom_legacy_call_as_function %} |
haraken
2014/10/09 04:24:02
[LegacyCallAsFunction] is also deprecated. Do we n
tasak
2014/10/10 07:52:24
I think, we should remove this in another CL.
|
+ static void legacyCallCustom(const v8::FunctionCallbackInfo<v8::Value>&); |
+ {% endif %} |
+ {# Custom internal fields #} |
+ static void installConditionallyEnabledProperties(v8::Handle<v8::Object>, v8::Isolate*); |
+ static void installConditionallyEnabledMethods(v8::Handle<v8::Object>, v8::Isolate*); |
+private: |
+ static void install{{v8_class}}Template(v8::Handle<v8::FunctionTemplate>, v8::Isolate*); |
+}; |
+} |
+{% endfilter %} |
+#endif // {{v8_class}}Partial_h |