| Index: Source/core/dom/ExecutionContext.h
|
| diff --git a/Source/core/dom/ExecutionContext.h b/Source/core/dom/ExecutionContext.h
|
| index 8f73906ccf34a840dac1eee099db71439bee79fa..abad7322da904386440ad548dbdb191619ea6281 100644
|
| --- a/Source/core/dom/ExecutionContext.h
|
| +++ b/Source/core/dom/ExecutionContext.h
|
| @@ -66,8 +66,6 @@ class ExecutionContext
|
| , public LifecycleContext<ExecutionContext>
|
| , public Supplementable<ExecutionContext> {
|
| public:
|
| - ExecutionContext();
|
| - virtual ~ExecutionContext();
|
| virtual void trace(Visitor*);
|
|
|
| // Delegating to ExecutionContextClient
|
| @@ -136,6 +134,9 @@ public:
|
| virtual EventQueue* eventQueue() const = 0;
|
|
|
| protected:
|
| + ExecutionContext();
|
| + virtual ~ExecutionContext();
|
| +
|
| void setClient(ExecutionContextClient* client) { m_client = client; }
|
|
|
| virtual const KURL& virtualURL() const = 0;
|
|
|