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

Unified Diff: Source/bindings/core/v8/V8DOMConfiguration.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/core/v8/V8DOMConfiguration.cpp
diff --git a/Source/bindings/core/v8/V8DOMConfiguration.cpp b/Source/bindings/core/v8/V8DOMConfiguration.cpp
index f67dd76451ff290f6afeb94ba3f5786bc0a1a8de..2cb6bf7d7256990454e16b8790599ab8f66182f1 100644
--- a/Source/bindings/core/v8/V8DOMConfiguration.cpp
+++ b/Source/bindings/core/v8/V8DOMConfiguration.cpp
@@ -117,6 +117,16 @@ v8::Handle<v8::FunctionTemplate> V8DOMConfiguration::functionTemplateForMethod(v
return functionTemplate;
}
+v8::Handle<v8::FunctionTemplate> V8DOMConfiguration::functionTemplateForMethod(v8::Handle<v8::Signature> signature, const SymbolKeyedMethodConfiguration& callback, v8::Isolate* isolate)
Jens Widell 2014/08/21 13:58:01 This is identical to the other functionTemplateFor
yhirano 2014/08/25 06:09:26 Done.
+{
+ v8::FunctionCallback functionCallback = callback.callback;
+ if (DOMWrapperWorld::current(isolate).isMainWorld() && callback.callbackForMainWorld)
+ functionCallback = callback.callbackForMainWorld;
+ v8::Local<v8::FunctionTemplate> functionTemplate = v8::FunctionTemplate::New(isolate, functionCallback, v8Undefined(), signature, callback.length);
+ functionTemplate->RemovePrototype();
+ return functionTemplate;
+}
+
v8::Local<v8::Signature> V8DOMConfiguration::installDOMClassTemplate(v8::Handle<v8::FunctionTemplate> functionDescriptor, const char* interfaceName, v8::Handle<v8::FunctionTemplate> parentClass, size_t fieldCount,
const AttributeConfiguration* attributes, size_t attributeCount,
const AccessorConfiguration* accessors, size_t accessorCount,

Powered by Google App Engine
This is Rietveld 408576698