Chromium Code Reviews| Index: third_party/WebKit/Source/modules/compositorworker/CompositorWorkerThreadTest.cpp |
| diff --git a/third_party/WebKit/Source/modules/compositorworker/CompositorWorkerThreadTest.cpp b/third_party/WebKit/Source/modules/compositorworker/CompositorWorkerThreadTest.cpp |
| index 7a45991966ad1c7eb99f45f5dd6b1aa58ec06acc..2143a51a2269ba11d19ca04f319352fa67108271 100644 |
| --- a/third_party/WebKit/Source/modules/compositorworker/CompositorWorkerThreadTest.cpp |
| +++ b/third_party/WebKit/Source/modules/compositorworker/CompositorWorkerThreadTest.cpp |
| @@ -188,7 +188,7 @@ public: |
| private: |
| void executeScriptInWorker(WorkerThread* worker, WebWaitableEvent* waitEvent) |
| { |
| - WorkerScriptController* scriptController = worker->workerGlobalScope()->script(); |
| + GlobalScopeScriptController* scriptController = worker->workerGlobalScope()->script(); |
|
kinuko
2015/12/24 04:45:51
ditto, this could be kept as WorkerScriptControlle
|
| bool evaluateResult = scriptController->evaluate(ScriptSourceCode("var counter = 0; ++counter;")); |
| ASSERT_UNUSED(evaluateResult, evaluateResult); |
| waitEvent->signal(); |