Index: third_party/WebKit/Source/bindings/tests/results/core/V8TestPermissiveDictionary.h |
diff --git a/third_party/WebKit/Source/bindings/tests/results/core/V8TestPermissiveDictionary.h b/third_party/WebKit/Source/bindings/tests/results/core/V8TestPermissiveDictionary.h |
index 244df5214142a1183935297ad50512145325df38..6f096eeaf56886af5b369c1cb5b388abca615f8f 100644 |
--- a/third_party/WebKit/Source/bindings/tests/results/core/V8TestPermissiveDictionary.h |
+++ b/third_party/WebKit/Source/bindings/tests/results/core/V8TestPermissiveDictionary.h |
@@ -29,11 +29,16 @@ class V8TestPermissiveDictionary { |
CORE_EXPORT bool toV8TestPermissiveDictionary(const TestPermissiveDictionary&, v8::Local<v8::Object> dictionary, v8::Local<v8::Object> creationContext, v8::Isolate*); |
-template<class CallbackInfo> |
+template <class CallbackInfo> |
inline void v8SetReturnValue(const CallbackInfo& callbackInfo, TestPermissiveDictionary& impl) { |
v8SetReturnValue(callbackInfo, ToV8(impl, callbackInfo.Holder(), callbackInfo.GetIsolate())); |
} |
+template <class CallbackInfo> |
+inline void v8SetReturnValue(const CallbackInfo& callbackInfo, TestPermissiveDictionary& impl, v8::Local<v8::Object> creationContext) { |
+ v8SetReturnValue(callbackInfo, ToV8(impl, creationContext, callbackInfo.GetIsolate())); |
+} |
+ |
template <> |
struct NativeValueTraits<TestPermissiveDictionary> { |
static TestPermissiveDictionary nativeValue(v8::Isolate*, v8::Local<v8::Value>, ExceptionState&); |