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

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: Fixed patch conflict 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
« no previous file with comments | « Source/bindings/templates/methods.cpp ('k') | Source/bindings/templates/partial_interface.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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..b5b71b1fa789061b963df9bf157acc8303701f9d
--- /dev/null
+++ b/Source/bindings/templates/partial_interface.h
@@ -0,0 +1,42 @@
+// 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_or_partial}}_h
+#define {{v8_class_or_partial}}_h
+
+{% for filename in header_includes %}
+#include "{{filename}}"
+{% endfor %}
+
+namespace blink {
+
+class {{v8_class_or_partial}} {
+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 %}
+ {# Custom internal fields #}
+ static void installConditionallyEnabledMethods(v8::Handle<v8::Object>, v8::Isolate*);
+private:
+ static void install{{v8_class}}Template(v8::Handle<v8::FunctionTemplate>, v8::Isolate*);
+};
+}
+#endif // {{v8_class_or_partial}}_h
« no previous file with comments | « Source/bindings/templates/methods.cpp ('k') | Source/bindings/templates/partial_interface.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698