Index: Source/bindings/core/v8/NativeValueTraits.h |
diff --git a/Source/bindings/core/v8/NativeValueTraits.h b/Source/bindings/core/v8/NativeValueTraits.h |
index b8840727f2569fe9b907029860653c6f492484ec..be1f3f5c340b0a5931962fe65310374f8bff7069 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::Isolate*, v8::Local<v8::Value>, ExceptionState&); |
+ static T nativeValue(v8::Isolate*, v8::Local<v8::Value>, ExceptionState&, Arguments... args); |
}; |
} // namespace blink |