Index: Source/bindings/core/v8/NativeValueTraits.h |
diff --git a/Source/bindings/core/v8/NativeValueTraits.h b/Source/bindings/core/v8/NativeValueTraits.h |
index 6d553d0aacf0981866255c8f752dd8e0ace40057..29ef64422d4093d2a16d04c3a7f53f5f9888d657 100644 |
--- a/Source/bindings/core/v8/NativeValueTraits.h |
+++ b/Source/bindings/core/v8/NativeValueTraits.h |
@@ -11,9 +11,9 @@ namespace blink { |
class ExceptionState; |
-template <typename T> |
+template <typename T, typename... Arguments> |
struct NativeValueTraits { |
- static T nativeValue(v8::Local<v8::Value>, v8::Isolate*, ExceptionState&); |
+ static T nativeValue(v8::Local<v8::Value>, v8::Isolate*, ExceptionState&, Arguments... args); |
}; |
} // namespace blink |