| Index: Source/bindings/tests/results/core/V8TestDictionary.h
|
| diff --git a/Source/bindings/tests/results/core/V8TestDictionary.h b/Source/bindings/tests/results/core/V8TestDictionary.h
|
| index 2bab5656bedbb63f598ed4ed67bea703c792571e..f176e7877731acb28bb0def26dc0dd37642d83dc 100644
|
| --- a/Source/bindings/tests/results/core/V8TestDictionary.h
|
| +++ b/Source/bindings/tests/results/core/V8TestDictionary.h
|
| @@ -17,13 +17,13 @@ class ExceptionState;
|
|
|
| class V8TestDictionary {
|
| public:
|
| - static TestDictionary* toImpl(v8::Isolate*, v8::Handle<v8::Value>, ExceptionState&);
|
| + static void toImpl(v8::Isolate*, v8::Handle<v8::Value>, TestDictionary&, ExceptionState&);
|
| };
|
|
|
| -v8::Handle<v8::Value> toV8(TestDictionary*, v8::Handle<v8::Object>, v8::Isolate*);
|
| +v8::Handle<v8::Value> toV8(TestDictionary&, v8::Handle<v8::Object>, v8::Isolate*);
|
|
|
| template<class CallbackInfo>
|
| -inline void v8SetReturnValue(const CallbackInfo& callbackInfo, TestDictionary* impl)
|
| +inline void v8SetReturnValue(const CallbackInfo& callbackInfo, TestDictionary& impl)
|
| {
|
| v8SetReturnValue(callbackInfo, toV8(impl, callbackInfo.Holder(), callbackInfo.GetIsolate()));
|
| }
|
|
|