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

Unified Diff: Source/bindings/templates/interface.cpp

Issue 483163003: Introduce ES6 iterator for DOM objects. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 4 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/interface.cpp
diff --git a/Source/bindings/templates/interface.cpp b/Source/bindings/templates/interface.cpp
index 163a2f6de7110ed691a4326817848c80ba87c4b5..2690307280cf9859e9f729719bee5d9868d89bd5 100644
--- a/Source/bindings/templates/interface.cpp
+++ b/Source/bindings/templates/interface.cpp
@@ -978,6 +978,10 @@ static void install{{v8_class}}Template(v8::Handle<v8::FunctionTemplate> functio
if named_property_getter.is_enumerable else '0' %}
functionTemplate->{{set_on_template}}()->SetNamedPropertyHandler({{named_property_getter_callback}}, {{named_property_setter_callback}}, {{named_property_query_callback}}, {{named_property_deleter_callback}}, {{named_property_enumerator_callback}});
{% endif %}
+ {% if is_iterable %}
+ static const V8DOMConfiguration::SymbolKeyedMethodConfiguration symbolIteratorConfiguration = { v8::Symbol::GetIterator, {{cpp_class}}V8Internal::symbol::iteratorMethodCallback, 0, 0, V8DOMConfiguration::ExposedToAllScripts };
haraken 2014/08/21 16:15:58 You'll need to support iteratorMethodCallbackForMa
haraken 2014/08/21 16:15:58 Don't mix "SymbolKeyedMethodConfiguration" and "sy
yhirano 2014/08/25 06:09:26 Done.
+ V8DOMConfiguration::installMethod(prototypeTemplate, defaultSignature, v8::DontDelete, symbolIteratorConfiguration, isolate);
+ {% endif %}
{# End special operations #}
{% if has_custom_legacy_call_as_function %}
functionTemplate->InstanceTemplate()->SetCallAsFunctionHandler({{v8_class}}::legacyCallCustom);

Powered by Google App Engine
This is Rietveld 408576698