OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2009 Google Inc. All rights reserved. | 2 * Copyright (C) 2009 Google 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 27 matching lines...) Expand all Loading... |
38 #include "bindings/core/v8/V8GCController.h" | 38 #include "bindings/core/v8/V8GCController.h" |
39 #include "bindings/core/v8/V8History.h" | 39 #include "bindings/core/v8/V8History.h" |
40 #include "bindings/core/v8/V8IdleTaskRunner.h" | 40 #include "bindings/core/v8/V8IdleTaskRunner.h" |
41 #include "bindings/core/v8/V8Location.h" | 41 #include "bindings/core/v8/V8Location.h" |
42 #include "bindings/core/v8/V8PerContextData.h" | 42 #include "bindings/core/v8/V8PerContextData.h" |
43 #include "bindings/core/v8/V8Window.h" | 43 #include "bindings/core/v8/V8Window.h" |
44 #include "bindings/core/v8/WorkerOrWorkletScriptController.h" | 44 #include "bindings/core/v8/WorkerOrWorkletScriptController.h" |
45 #include "core/dom/Document.h" | 45 #include "core/dom/Document.h" |
46 #include "core/dom/ExceptionCode.h" | 46 #include "core/dom/ExceptionCode.h" |
47 #include "core/fetch/AccessControlStatus.h" | 47 #include "core/fetch/AccessControlStatus.h" |
48 #include "core/frame/ConsoleTypes.h" | |
49 #include "core/frame/LocalDOMWindow.h" | 48 #include "core/frame/LocalDOMWindow.h" |
50 #include "core/frame/LocalFrame.h" | 49 #include "core/frame/LocalFrame.h" |
51 #include "core/frame/csp/ContentSecurityPolicy.h" | 50 #include "core/frame/csp/ContentSecurityPolicy.h" |
52 #include "core/inspector/MainThreadDebugger.h" | 51 #include "core/inspector/MainThreadDebugger.h" |
53 #include "core/inspector/ScriptArguments.h" | 52 #include "core/inspector/ScriptArguments.h" |
54 #include "core/workers/WorkerGlobalScope.h" | 53 #include "core/workers/WorkerGlobalScope.h" |
55 #include "platform/EventDispatchForbiddenScope.h" | 54 #include "platform/EventDispatchForbiddenScope.h" |
56 #include "platform/RuntimeEnabledFeatures.h" | 55 #include "platform/RuntimeEnabledFeatures.h" |
57 #include "platform/TraceEvent.h" | 56 #include "platform/TraceEvent.h" |
| 57 #include "platform/v8_inspector/public/ConsoleTypes.h" |
58 #include "public/platform/Platform.h" | 58 #include "public/platform/Platform.h" |
59 #include "public/platform/WebScheduler.h" | 59 #include "public/platform/WebScheduler.h" |
60 #include "public/platform/WebThread.h" | 60 #include "public/platform/WebThread.h" |
61 #include "wtf/AddressSanitizer.h" | 61 #include "wtf/AddressSanitizer.h" |
62 #include "wtf/RefPtr.h" | 62 #include "wtf/RefPtr.h" |
63 #include "wtf/text/WTFString.h" | 63 #include "wtf/text/WTFString.h" |
64 #include "wtf/typed_arrays/ArrayBufferContents.h" | 64 #include "wtf/typed_arrays/ArrayBufferContents.h" |
65 #include <v8-debug.h> | 65 #include <v8-debug.h> |
66 #include <v8-profiler.h> | 66 #include <v8-profiler.h> |
67 | 67 |
(...skipping 405 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
473 | 473 |
474 isolate->AddMessageListener(messageHandlerInWorker); | 474 isolate->AddMessageListener(messageHandlerInWorker); |
475 isolate->SetFatalErrorHandler(reportFatalErrorInWorker); | 475 isolate->SetFatalErrorHandler(reportFatalErrorInWorker); |
476 | 476 |
477 uint32_t here; | 477 uint32_t here; |
478 isolate->SetStackLimit(reinterpret_cast<uintptr_t>(&here - kWorkerMaxStackSi
ze / sizeof(uint32_t*))); | 478 isolate->SetStackLimit(reinterpret_cast<uintptr_t>(&here - kWorkerMaxStackSi
ze / sizeof(uint32_t*))); |
479 isolate->SetPromiseRejectCallback(promiseRejectHandlerInWorker); | 479 isolate->SetPromiseRejectCallback(promiseRejectHandlerInWorker); |
480 } | 480 } |
481 | 481 |
482 } // namespace blink | 482 } // namespace blink |
OLD | NEW |