0
Files
android_webview
apps
ash
base
build
build_overrides
buildtools
cc
chrome
chromecast
chromeos
clank
codelabs
components
content
crypto
dbus
device
docs
extensions
fuchsia_web
gin
modules
public
shell
test
BUILD.gn
DEPS
DIR_METADATA
OWNERS
README.md
arguments.cc
arguments.h
arguments_unittest.cc
array_buffer.cc
array_buffer.h
array_buffer_unittest.cc
context_holder.cc
converter.cc
converter.h
converter_unittest.cc
cppgc.cc
data_object_builder.cc
data_object_builder.h
data_object_builder_unittest.cc
debug_impl.cc
debug_impl.h
dictionary.cc
dictionary.h
function_template.cc
function_template.h
gin_export.h
gin_features.cc
gin_features.h
handle.h
interceptor.cc
interceptor.h
interceptor_unittest.cc
isolate_holder.cc
isolate_holder_unittest.cc
object_template_builder.cc
object_template_builder.h
per_context_data.cc
per_context_data.h
per_context_data_unittest.cc
per_isolate_data.cc
per_isolate_data.h
runner.cc
runner.h
shell_runner.cc
shell_runner.h
shell_runner_unittest.cc
thread_isolation.cc
thread_isolation.h
time_clamper.cc
time_clamper.h
time_clamper_unittest.cc
try_catch.cc
try_catch.h
v8_foreground_task_runner.cc
v8_foreground_task_runner.h
v8_foreground_task_runner_base.cc
v8_foreground_task_runner_base.h
v8_foreground_task_runner_with_locker.cc
v8_foreground_task_runner_with_locker.h
v8_initializer.cc
v8_initializer.h
v8_isolate_memory_dump_provider.cc
v8_isolate_memory_dump_provider.h
v8_isolate_memory_dump_provider_unittest.cc
v8_platform.cc
v8_platform_page_allocator.cc
v8_platform_page_allocator.h
v8_platform_page_allocator_unittest.cc
v8_platform_thread_isolated_allocator.cc
v8_platform_thread_isolated_allocator.h
v8_platform_unittest.cc
v8_shared_memory_dump_provider.cc
v8_shared_memory_dump_provider.h
v8_shared_memory_dump_provider_unittest.cc
wrappable.cc
wrappable.h
wrappable_unittest.cc
wrapper_info.cc
google_apis
gpu
headless
infra
internal
ios
ios_internal
ipc
media
mojo
native_client
native_client_sdk
net
pdf
ppapi
printing
remoting
rlz
sandbox
services
signing_keys
skia
sql
storage
styleguide
testing
third_party
tools
ui
url
v8
webkit
.clang-format
.clang-tidy
.clangd
.git-blame-ignore-revs
.gitallowed
.gitattributes
.gitignore
.gitmodules
.gn
.mailmap
.rustfmt.toml
.vpython3
.yapfignore
ATL_OWNERS
AUTHORS
BUILD.gn
CODE_OF_CONDUCT.md
CPPLINT.cfg
CRYPTO_OWNERS
DEPS
DIR_METADATA
LICENSE
LICENSE.chromium_os
OWNERS
PRESUBMIT.py
PRESUBMIT_test.py
PRESUBMIT_test_mocks.py
README.md
WATCHLISTS
codereview.settings
src/gin/debug_impl.cc
Avi Drissman 468e51b677 Update copyright headers in gin/
The methodology used to generate this CL is documented in
https://crbug.com/1098010#c34.

No-Try: true
Bug: 1098010
Change-Id: Iafb266228260abedd345bc3e8c1d483c3a4dc4d6
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/3891087
Commit-Queue: Mark Mentovai <mark@chromium.org>
Auto-Submit: Avi Drissman <avi@chromium.org>
Owners-Override: Avi Drissman <avi@chromium.org>
Reviewed-by: Mark Mentovai <mark@chromium.org>
Cr-Commit-Position: refs/heads/main@{#1046550}
2022-09-13 20:47:01 +00:00

38 lines
827 B
C++

// Copyright 2014 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "gin/debug_impl.h"
#include "build/build_config.h"
#if BUILDFLAG(IS_WIN)
#include "v8/include/v8-initialization.h"
#endif
namespace gin {
namespace {
v8::JitCodeEventHandler g_jit_code_event_handler = NULL;
} // namespace
// static
void Debug::SetJitCodeEventHandler(v8::JitCodeEventHandler event_handler) {
g_jit_code_event_handler = event_handler;
}
#if BUILDFLAG(IS_WIN)
// static
void Debug::SetUnhandledExceptionCallback(
v8::UnhandledExceptionCallback callback) {
v8::V8::SetUnhandledExceptionCallback(callback);
}
#endif
// static
v8::JitCodeEventHandler DebugImpl::GetJitCodeEventHandler() {
return g_jit_code_event_handler;
}
} // namespace gin