| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2008, 2009 Apple Inc. All rights reserved. | 2 * Copyright (C) 2008, 2009 Apple Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions | 5 * modification, are permitted provided that the following conditions |
| 6 * are met: | 6 * are met: |
| 7 * 1. Redistributions of source code must retain the above copyright | 7 * 1. Redistributions of source code must retain the above copyright |
| 8 * notice, this list of conditions and the following disclaimer. | 8 * notice, this list of conditions and the following disclaimer. |
| 9 * 2. Redistributions in binary form must reproduce the above copyright | 9 * 2. Redistributions in binary form must reproduce the above copyright |
| 10 * notice, this list of conditions and the following disclaimer in the | 10 * notice, this list of conditions and the following disclaimer in the |
| (...skipping 16 matching lines...) Expand all Loading... |
| 27 #ifndef WorkerGlobalScope_h | 27 #ifndef WorkerGlobalScope_h |
| 28 #define WorkerGlobalScope_h | 28 #define WorkerGlobalScope_h |
| 29 | 29 |
| 30 #include "bindings/core/v8/ActiveScriptWrappable.h" | 30 #include "bindings/core/v8/ActiveScriptWrappable.h" |
| 31 #include "bindings/core/v8/V8CacheOptions.h" | 31 #include "bindings/core/v8/V8CacheOptions.h" |
| 32 #include "bindings/core/v8/WorkerOrWorkletScriptController.h" | 32 #include "bindings/core/v8/WorkerOrWorkletScriptController.h" |
| 33 #include "core/CoreExport.h" | 33 #include "core/CoreExport.h" |
| 34 #include "core/dom/ExecutionContext.h" | 34 #include "core/dom/ExecutionContext.h" |
| 35 #include "core/events/EventListener.h" | 35 #include "core/events/EventListener.h" |
| 36 #include "core/events/EventTarget.h" | 36 #include "core/events/EventTarget.h" |
| 37 #include "core/fetch/CachedMetadataHandler.h" | |
| 38 #include "core/frame/DOMTimerCoordinator.h" | 37 #include "core/frame/DOMTimerCoordinator.h" |
| 39 #include "core/frame/DOMWindowBase64.h" | 38 #include "core/frame/DOMWindowBase64.h" |
| 40 #include "core/frame/csp/ContentSecurityPolicy.h" | 39 #include "core/frame/csp/ContentSecurityPolicy.h" |
| 41 #include "core/workers/WorkerEventQueue.h" | 40 #include "core/workers/WorkerEventQueue.h" |
| 42 #include "core/workers/WorkerOrWorkletGlobalScope.h" | 41 #include "core/workers/WorkerOrWorkletGlobalScope.h" |
| 43 #include "core/workers/WorkerSettings.h" | 42 #include "core/workers/WorkerSettings.h" |
| 44 #include "platform/heap/Handle.h" | 43 #include "platform/heap/Handle.h" |
| 44 #include "platform/loader/fetch/CachedMetadataHandler.h" |
| 45 #include "wtf/ListHashSet.h" | 45 #include "wtf/ListHashSet.h" |
| 46 #include <memory> | 46 #include <memory> |
| 47 | 47 |
| 48 namespace blink { | 48 namespace blink { |
| 49 | 49 |
| 50 class ConsoleMessage; | 50 class ConsoleMessage; |
| 51 class ExceptionState; | 51 class ExceptionState; |
| 52 class V8AbstractEventListener; | 52 class V8AbstractEventListener; |
| 53 class WorkerClients; | 53 class WorkerClients; |
| 54 class WorkerLocation; | 54 class WorkerLocation; |
| (...skipping 154 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 209 | 209 |
| 210 DEFINE_TYPE_CASTS(WorkerGlobalScope, | 210 DEFINE_TYPE_CASTS(WorkerGlobalScope, |
| 211 ExecutionContext, | 211 ExecutionContext, |
| 212 context, | 212 context, |
| 213 context->isWorkerGlobalScope(), | 213 context->isWorkerGlobalScope(), |
| 214 context.isWorkerGlobalScope()); | 214 context.isWorkerGlobalScope()); |
| 215 | 215 |
| 216 } // namespace blink | 216 } // namespace blink |
| 217 | 217 |
| 218 #endif // WorkerGlobalScope_h | 218 #endif // WorkerGlobalScope_h |
| OLD | NEW |