| Index: Source/bindings/v8/V8CustomElementLifecycleCallbacks.h
|
| diff --git a/Source/bindings/v8/V8CustomElementLifecycleCallbacks.h b/Source/bindings/v8/V8CustomElementLifecycleCallbacks.h
|
| index 0a9b9321920b6698377e8b7227c47115e413ebd6..43ca667acee34e3407868a5061b30a7e63317d31 100644
|
| --- a/Source/bindings/v8/V8CustomElementLifecycleCallbacks.h
|
| +++ b/Source/bindings/v8/V8CustomElementLifecycleCallbacks.h
|
| @@ -44,16 +44,17 @@ class ScriptExecutionContext;
|
|
|
| class V8CustomElementLifecycleCallbacks : public CustomElementLifecycleCallbacks, ActiveDOMCallback {
|
| public:
|
| - static PassRefPtr<V8CustomElementLifecycleCallbacks> create(ScriptExecutionContext*, v8::Handle<v8::Object> owner, v8::Handle<v8::Function> created);
|
| + static PassRefPtr<V8CustomElementLifecycleCallbacks> create(ScriptExecutionContext*, v8::Handle<v8::Object> prototype, v8::Handle<v8::Function> created);
|
|
|
| virtual ~V8CustomElementLifecycleCallbacks() { }
|
|
|
| private:
|
| - V8CustomElementLifecycleCallbacks(ScriptExecutionContext*, v8::Handle<v8::Function> created);
|
| + V8CustomElementLifecycleCallbacks(ScriptExecutionContext*, v8::Handle<v8::Object> prototype, v8::Handle<v8::Function> created);
|
|
|
| virtual void created(Element*) OVERRIDE;
|
|
|
| RefPtr<DOMWrapperWorld> m_world;
|
| + ScopedPersistent<v8::Object> m_prototype;
|
| ScopedPersistent<v8::Function> m_created;
|
| };
|
|
|
|
|