| 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 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 42 #include "core/workers/WorkerEventQueue.h" | 42 #include "core/workers/WorkerEventQueue.h" |
| 43 #include "core/workers/WorkerOrWorkletGlobalScope.h" | 43 #include "core/workers/WorkerOrWorkletGlobalScope.h" |
| 44 #include "core/workers/WorkerSettings.h" | 44 #include "core/workers/WorkerSettings.h" |
| 45 #include "platform/heap/Handle.h" | 45 #include "platform/heap/Handle.h" |
| 46 #include "wtf/ListHashSet.h" | 46 #include "wtf/ListHashSet.h" |
| 47 #include <memory> | 47 #include <memory> |
| 48 | 48 |
| 49 namespace blink { | 49 namespace blink { |
| 50 | 50 |
| 51 class ConsoleMessage; | 51 class ConsoleMessage; |
| 52 class ConsoleMessageStorage; | |
| 53 class ExceptionState; | 52 class ExceptionState; |
| 54 class V8AbstractEventListener; | 53 class V8AbstractEventListener; |
| 55 class WorkerClients; | 54 class WorkerClients; |
| 56 class WorkerLocation; | 55 class WorkerLocation; |
| 57 class WorkerNavigator; | 56 class WorkerNavigator; |
| 58 class WorkerThread; | 57 class WorkerThread; |
| 59 | 58 |
| 60 class CORE_EXPORT WorkerGlobalScope : public EventTargetWithInlineData, | 59 class CORE_EXPORT WorkerGlobalScope : public EventTargetWithInlineData, |
| 61 public ActiveScriptWrappable, | 60 public ActiveScriptWrappable, |
| 62 public SecurityContext, | 61 public SecurityContext, |
| (...skipping 150 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 213 | 212 |
| 214 DEFINE_TYPE_CASTS(WorkerGlobalScope, | 213 DEFINE_TYPE_CASTS(WorkerGlobalScope, |
| 215 ExecutionContext, | 214 ExecutionContext, |
| 216 context, | 215 context, |
| 217 context->isWorkerGlobalScope(), | 216 context->isWorkerGlobalScope(), |
| 218 context.isWorkerGlobalScope()); | 217 context.isWorkerGlobalScope()); |
| 219 | 218 |
| 220 } // namespace blink | 219 } // namespace blink |
| 221 | 220 |
| 222 #endif // WorkerGlobalScope_h | 221 #endif // WorkerGlobalScope_h |
| OLD | NEW |