| Index: Source/core/dom/ExecutionContextClient.h
|
| diff --git a/Source/core/dom/ExecutionContextClient.h b/Source/core/dom/ExecutionContextClient.h
|
| index 2db223e8888803ef933e1350deecac6e526474dc..1964752a75c6291d2822ce8d41230e4403b03e41 100644
|
| --- a/Source/core/dom/ExecutionContextClient.h
|
| +++ b/Source/core/dom/ExecutionContextClient.h
|
| @@ -35,7 +35,7 @@
|
|
|
| namespace WebCore {
|
|
|
| -class DOMWindow;
|
| +class LocalDOMWindow;
|
| class EventQueue;
|
| class EventTarget;
|
| class ExecutionContextTask;
|
| @@ -52,7 +52,7 @@ public:
|
| virtual bool isDocument() const { return false; }
|
| virtual bool isWorkerGlobalScope() const { return false; }
|
| virtual bool isJSExecutionForbidden() const = 0;
|
| - virtual DOMWindow* executingWindow() { return 0; }
|
| + virtual LocalDOMWindow* executingWindow() { return 0; }
|
| virtual String userAgent(const KURL&) const = 0;
|
| virtual void disableEval(const String& errorMessage) = 0;
|
| virtual SecurityContext& securityContext() = 0;
|
|
|