| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef ThreadedMessagingProxyBase_h | 5 #ifndef ThreadedMessagingProxyBase_h |
| 6 #define ThreadedMessagingProxyBase_h | 6 #define ThreadedMessagingProxyBase_h |
| 7 | 7 |
| 8 #include "core/CoreExport.h" | 8 #include "core/CoreExport.h" |
| 9 #include "core/frame/UseCounter.h" | 9 #include "core/frame/UseCounter.h" |
| 10 #include "core/inspector/ConsoleTypes.h" | 10 #include "core/inspector/ConsoleTypes.h" |
| 11 #include "core/workers/ParentFrameTaskRunners.h" | 11 #include "core/workers/ParentFrameTaskRunners.h" |
| 12 #include "core/workers/WorkerLoaderProxy.h" | 12 #include "core/workers/WorkerLoaderProxy.h" |
| 13 #include "wtf/Forward.h" | 13 #include "platform/wtf/Forward.h" |
| 14 | 14 |
| 15 namespace blink { | 15 namespace blink { |
| 16 | 16 |
| 17 class ExecutionContext; | 17 class ExecutionContext; |
| 18 class SourceLocation; | 18 class SourceLocation; |
| 19 class WorkerInspectorProxy; | 19 class WorkerInspectorProxy; |
| 20 class WorkerLoaderProxy; | 20 class WorkerLoaderProxy; |
| 21 class WorkerThread; | 21 class WorkerThread; |
| 22 class WorkerThreadStartupData; | 22 class WorkerThreadStartupData; |
| 23 | 23 |
| (...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 105 | 105 |
| 106 RefPtr<WorkerLoaderProxy> loader_proxy_; | 106 RefPtr<WorkerLoaderProxy> loader_proxy_; |
| 107 | 107 |
| 108 bool may_be_destroyed_; | 108 bool may_be_destroyed_; |
| 109 bool asked_to_terminate_; | 109 bool asked_to_terminate_; |
| 110 }; | 110 }; |
| 111 | 111 |
| 112 } // namespace blink | 112 } // namespace blink |
| 113 | 113 |
| 114 #endif // ThreadedMessagingProxyBase_h | 114 #endif // ThreadedMessagingProxyBase_h |
| OLD | NEW |