Movatterモバイル変換


[0]ホーム

URL:


Google Git
Sign in
chromium /chromium /src /refs/heads/main /. /gin /debug_impl.cc
blob: d924082d277bedcb25e7e6a708669474af0d35f7 [file] [log] [blame] [edit]
// 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
voidDebug::SetJitCodeEventHandler(v8::JitCodeEventHandler event_handler){
g_jit_code_event_handler= event_handler;
}
#if BUILDFLAG(IS_WIN)
// static
voidDebug::SetUnhandledExceptionCallback(
v8::UnhandledExceptionCallback callback){
v8::V8::SetUnhandledExceptionCallback(callback);
}
#endif
// static
v8::JitCodeEventHandlerDebugImpl::GetJitCodeEventHandler(){
return g_jit_code_event_handler;
}
}// namespace gin

[8]ページ先頭

©2009-2025 Movatter.jp