| Index: Source/bindings/tests/results/V8TestObject.h
|
| diff --git a/Source/bindings/tests/results/V8TestObject.h b/Source/bindings/tests/results/V8TestObject.h
|
| index 2ab6993c727b3df34a91846fbaf9d704a39aaa71..692c374b607ebb561a71a9cc42667408aa77e239 100644
|
| --- a/Source/bindings/tests/results/V8TestObject.h
|
| +++ b/Source/bindings/tests/results/V8TestObject.h
|
| @@ -85,11 +85,12 @@ public:
|
| static void installConditionallyEnabledMethods(v8::Handle<v8::Object>, v8::Isolate*);
|
|
|
| private:
|
| - friend v8::Handle<v8::Object> wrap(TestObject*, v8::Handle<v8::Object> creationContext, v8::Isolate*);
|
| - static v8::Handle<v8::Object> createWrapper(PassRefPtr<TestObject>, v8::Handle<v8::Object> creationContext, v8::Isolate*);
|
| };
|
|
|
| -v8::Handle<v8::Object> wrap(TestObject* impl, v8::Handle<v8::Object> creationContext, v8::Isolate*);
|
| +inline v8::Handle<v8::Object> wrap(TestObject* impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate)
|
| +{
|
| + return impl->wrap(creationContext, isolate);
|
| +}
|
|
|
| inline v8::Handle<v8::Value> toV8(TestObject* impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate)
|
| {
|
|
|