| Index: Source/bindings/v8/V8Binding.h
|
| diff --git a/Source/bindings/v8/V8Binding.h b/Source/bindings/v8/V8Binding.h
|
| index 76250156a929c0716e6ee940f1b6fe4e139031cd..89c8edd1e67578935dd822f311550436c184f2e4 100644
|
| --- a/Source/bindings/v8/V8Binding.h
|
| +++ b/Source/bindings/v8/V8Binding.h
|
| @@ -725,6 +725,13 @@ namespace WebCore {
|
|
|
| // Can only be called by blink::initialize
|
| void setMainThreadIsolate(v8::Isolate*);
|
| +
|
| + // Converts a DOM object to a v8 value.
|
| + // This is a no-inline version of toV8(). If you want to call toV8()
|
| + // without creating #include cycles, you can use this function instead.
|
| + // Each specialized implementation will be generated.
|
| + template<typename T>
|
| + v8::Handle<v8::Value> toV8NoInline(T* impl, v8::Handle<v8::Object> creationContext, v8::Isolate*);
|
| } // namespace WebCore
|
|
|
| #endif // V8Binding_h
|
|
|