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

Unified Diff: Source/bindings/templates/partial_interface.h

Issue 618373003: [bindings] partial interfaces should not violate componentization (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Added --target-component instead of --genearte-partial Created 6 years, 2 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 side-by-side diff with in-line comments
Download patch
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..797339bcd80bb8b6990fea5a00523c746f7559f8
--- /dev/null
+++ b/Source/bindings/templates/partial_interface.h
@@ -0,0 +1,48 @@
+// 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 {{actual_v8_class}}_h
+#define {{actual_v8_class}}_h
+
+{% filter conditional(conditional_string) %}
+{% for filename in header_includes %}
+#include "{{filename}}"
+{% endfor %}
+
+namespace blink {
+
+class {{actual_v8_class}} {
+public:
+ static void initialize();
+ {% for method in methods if method.is_custom %}
+ {% filter conditional(method.conditional_string) %}
+ 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 %}
+ 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 // {{actual_v8_class}}_h

Powered by Google App Engine
This is Rietveld 408576698