| Index: third_party/WebKit/Source/core/workers/DedicatedWorkerGlobalScope.cpp
|
| diff --git a/third_party/WebKit/Source/core/workers/DedicatedWorkerGlobalScope.cpp b/third_party/WebKit/Source/core/workers/DedicatedWorkerGlobalScope.cpp
|
| index ceaf184d468958117fab6ca7eb6644100b2803f0..637cefd5bcd30fb31e24e56b9b42c9ca3583f9d8 100644
|
| --- a/third_party/WebKit/Source/core/workers/DedicatedWorkerGlobalScope.cpp
|
| +++ b/third_party/WebKit/Source/core/workers/DedicatedWorkerGlobalScope.cpp
|
| @@ -34,10 +34,11 @@
|
| #include "bindings/core/v8/SerializedScriptValue.h"
|
| #include "core/dom/CrossThreadTask.h"
|
| #include "core/frame/Deprecation.h"
|
| -#include "core/frame/LocalDOMWindow.h"
|
| +#include "core/frame/UseCounter.h"
|
| +#include "core/frame/csp/ContentSecurityPolicy.h"
|
| #include "core/workers/DedicatedWorkerThread.h"
|
| +#include "core/workers/InProcessWorkerObjectProxy.h"
|
| #include "core/workers/WorkerClients.h"
|
| -#include "core/workers/WorkerObjectProxy.h"
|
| #include "core/workers/WorkerThreadStartupData.h"
|
|
|
| namespace blink {
|
| @@ -77,7 +78,7 @@ void DedicatedWorkerGlobalScope::postMessage(ExecutionContext* context, PassRefP
|
|
|
| DedicatedWorkerThread* DedicatedWorkerGlobalScope::thread() const
|
| {
|
| - return static_cast<DedicatedWorkerThread*>(Base::thread());
|
| + return static_cast<DedicatedWorkerThread*>(WorkerGlobalScope::thread());
|
| }
|
|
|
| static void countOnDocument(UseCounter::Feature feature, ExecutionContext* context)
|
|
|