| 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 18 matching lines...) Expand all Loading... |
| 29 | 29 |
| 30 #include "bindings/core/v8/BindingSecurity.h" | 30 #include "bindings/core/v8/BindingSecurity.h" |
| 31 #include "bindings/core/v8/DOMWrapperWorld.h" | 31 #include "bindings/core/v8/DOMWrapperWorld.h" |
| 32 #include "bindings/core/v8/RejectedPromises.h" | 32 #include "bindings/core/v8/RejectedPromises.h" |
| 33 #include "bindings/core/v8/RetainedDOMInfo.h" | 33 #include "bindings/core/v8/RetainedDOMInfo.h" |
| 34 #include "bindings/core/v8/ScriptController.h" | 34 #include "bindings/core/v8/ScriptController.h" |
| 35 #include "bindings/core/v8/ScriptValue.h" | 35 #include "bindings/core/v8/ScriptValue.h" |
| 36 #include "bindings/core/v8/ScriptWrappableVisitor.h" | 36 #include "bindings/core/v8/ScriptWrappableVisitor.h" |
| 37 #include "bindings/core/v8/SourceLocation.h" | 37 #include "bindings/core/v8/SourceLocation.h" |
| 38 #include "bindings/core/v8/UseCounterCallback.h" | 38 #include "bindings/core/v8/UseCounterCallback.h" |
| 39 #include "bindings/core/v8/V8Binding.h" | 39 #include "bindings/core/v8/V8BindingForCore.h" |
| 40 #include "bindings/core/v8/V8DOMException.h" | 40 #include "bindings/core/v8/V8DOMException.h" |
| 41 #include "bindings/core/v8/V8ErrorEvent.h" | 41 #include "bindings/core/v8/V8ErrorEvent.h" |
| 42 #include "bindings/core/v8/V8ErrorHandler.h" | 42 #include "bindings/core/v8/V8ErrorHandler.h" |
| 43 #include "bindings/core/v8/V8GCController.h" | 43 #include "bindings/core/v8/V8GCController.h" |
| 44 #include "bindings/core/v8/V8IdleTaskRunner.h" | 44 #include "bindings/core/v8/V8IdleTaskRunner.h" |
| 45 #include "bindings/core/v8/V8Location.h" | 45 #include "bindings/core/v8/V8Location.h" |
| 46 #include "bindings/core/v8/V8PerContextData.h" | 46 #include "bindings/core/v8/V8PerContextData.h" |
| 47 #include "bindings/core/v8/V8PrivateProperty.h" | 47 #include "bindings/core/v8/V8PrivateProperty.h" |
| 48 #include "bindings/core/v8/V8Window.h" | 48 #include "bindings/core/v8/V8Window.h" |
| 49 #include "bindings/core/v8/WorkerOrWorkletScriptController.h" | 49 #include "bindings/core/v8/WorkerOrWorkletScriptController.h" |
| (...skipping 533 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 583 v8::Isolate::kMessageLog); | 583 v8::Isolate::kMessageLog); |
| 584 isolate->SetFatalErrorHandler(ReportFatalErrorInWorker); | 584 isolate->SetFatalErrorHandler(ReportFatalErrorInWorker); |
| 585 | 585 |
| 586 uint32_t here; | 586 uint32_t here; |
| 587 isolate->SetStackLimit(reinterpret_cast<uintptr_t>(&here) - | 587 isolate->SetStackLimit(reinterpret_cast<uintptr_t>(&here) - |
| 588 kWorkerMaxStackSize); | 588 kWorkerMaxStackSize); |
| 589 isolate->SetPromiseRejectCallback(PromiseRejectHandlerInWorker); | 589 isolate->SetPromiseRejectCallback(PromiseRejectHandlerInWorker); |
| 590 } | 590 } |
| 591 | 591 |
| 592 } // namespace blink | 592 } // namespace blink |
| OLD | NEW |