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

Unified Diff: third_party/WebKit/Source/bindings/templates/interface.h.tmpl

Issue 2571063002: Remove Blink-in-JS (Closed)
Patch Set: Created 4 years 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: third_party/WebKit/Source/bindings/templates/interface.h.tmpl
diff --git a/third_party/WebKit/Source/bindings/templates/interface.h.tmpl b/third_party/WebKit/Source/bindings/templates/interface.h.tmpl
index e8525547fdf4db52c9a21efbd6ffdff8c6980deb..29acbc36034829bb3b6938947e929d0410b76f08 100644
--- a/third_party/WebKit/Source/bindings/templates/interface.h.tmpl
+++ b/third_party/WebKit/Source/bindings/templates/interface.h.tmpl
@@ -28,22 +28,6 @@ class {{v8_class}}Constructor {
class {{v8_class}} {
STATIC_ONLY({{v8_class}});
public:
- {% if has_private_script %}
- class PrivateScript {
- STATIC_ONLY(PrivateScript);
- public:
- {% for method in methods if method.is_implemented_in_private_script %}
- static bool {{method.name}}Method({{method.argument_declarations_for_private_script | join(', ')}});
- {% endfor %}
- {% for attribute in attributes if attribute.is_implemented_in_private_script %}
- static bool {{attribute.name}}AttributeGetter(LocalFrame* frame, {{cpp_class}}* holderImpl, {{attribute.cpp_type}}* result);
- {% if not attribute.is_read_only %}
- static bool {{attribute.name}}AttributeSetter(LocalFrame* frame, {{cpp_class}}* holderImpl, {{attribute.argument_cpp_type}} cppValue);
- {% endif %}
- {% endfor %}
- };
-
- {% endif %}
{% if is_array_buffer_or_view %}
{{exported}}static {{cpp_class}}* toImpl(v8::Local<v8::Object> object);
{% else %}

Powered by Google App Engine
This is Rietveld 408576698