Index: Source/bindings/v8/V8Binding.h |
diff --git a/Source/bindings/v8/V8Binding.h b/Source/bindings/v8/V8Binding.h |
index 76250156a929c0716e6ee940f1b6fe4e139031cd..d83cfbb79c69a25197d6f779af7f06bee47f2f16 100644 |
--- a/Source/bindings/v8/V8Binding.h |
+++ b/Source/bindings/v8/V8Binding.h |
@@ -725,6 +725,11 @@ namespace WebCore { |
// Can only be called by blink::initialize |
void setMainThreadIsolate(v8::Isolate*); |
+ |
+ // Converts a DOM object to a v8 value. |
+ // Each specialized implementation will be generated. |
haraken
2013/11/23 15:03:18
Would you add more comment about what this method
yhirano
2013/11/25 01:50:52
Done.
|
+ template<typename T> |
+ v8::Handle<v8::Value> toV8NoInline(T* impl, v8::Handle<v8::Object> creationContext, v8::Isolate*); |
} // namespace WebCore |
#endif // V8Binding_h |