| Index: Source/bindings/v8/V8CustomElementLifecycleCallbacks.h
|
| diff --git a/Source/bindings/v8/V8CustomElementLifecycleCallbacks.h b/Source/bindings/v8/V8CustomElementLifecycleCallbacks.h
|
| index c46a5c16908446901b9afd53dca0b7d62cb25629..fe32ad90ef481c9404bfe030a57ec5fa7fbf3838 100644
|
| --- a/Source/bindings/v8/V8CustomElementLifecycleCallbacks.h
|
| +++ b/Source/bindings/v8/V8CustomElementLifecycleCallbacks.h
|
| @@ -48,14 +48,14 @@ class V8PerContextData;
|
|
|
| class V8CustomElementLifecycleCallbacks FINAL : public CustomElementLifecycleCallbacks, ContextLifecycleObserver {
|
| public:
|
| - static PassRefPtr<V8CustomElementLifecycleCallbacks> create(ExecutionContext*, v8::Handle<v8::Object> prototype, v8::Handle<v8::Function> created, v8::Handle<v8::Function> attached, v8::Handle<v8::Function> detached, v8::Handle<v8::Function> attributeChanged);
|
| + static PassRefPtr<V8CustomElementLifecycleCallbacks> create(ScriptState*, v8::Handle<v8::Object> prototype, v8::Handle<v8::Function> created, v8::Handle<v8::Function> attached, v8::Handle<v8::Function> detached, v8::Handle<v8::Function> attributeChanged);
|
|
|
| virtual ~V8CustomElementLifecycleCallbacks();
|
|
|
| bool setBinding(CustomElementDefinition* owner, PassOwnPtr<CustomElementBinding>);
|
|
|
| private:
|
| - V8CustomElementLifecycleCallbacks(ExecutionContext*, v8::Handle<v8::Object> prototype, v8::Handle<v8::Function> created, v8::Handle<v8::Function> attached, v8::Handle<v8::Function> detached, v8::Handle<v8::Function> attributeChanged);
|
| + V8CustomElementLifecycleCallbacks(ScriptState*, v8::Handle<v8::Object> prototype, v8::Handle<v8::Function> created, v8::Handle<v8::Function> attached, v8::Handle<v8::Function> detached, v8::Handle<v8::Function> attributeChanged);
|
|
|
| virtual void created(Element*) OVERRIDE;
|
| virtual void attached(Element*) OVERRIDE;
|
|
|