summaryrefslogtreecommitdiff
path: root/chromium/gin/debug_impl.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/gin/debug_impl.cc')
-rw-r--r--chromium/gin/debug_impl.cc11
1 files changed, 0 insertions, 11 deletions
diff --git a/chromium/gin/debug_impl.cc b/chromium/gin/debug_impl.cc
index 5657ec38e9b..5c3b7ffc932 100644
--- a/chromium/gin/debug_impl.cc
+++ b/chromium/gin/debug_impl.cc
@@ -7,7 +7,6 @@
namespace gin {
namespace {
-v8::FunctionEntryHook g_entry_hook = NULL;
v8::JitCodeEventHandler g_jit_code_event_handler = NULL;
#if defined(OS_WIN)
Debug::CodeRangeCreatedCallback g_code_range_created_callback = NULL;
@@ -16,11 +15,6 @@ Debug::CodeRangeDeletedCallback g_code_range_deleted_callback = NULL;
} // namespace
// static
-void Debug::SetFunctionEntryHook(v8::FunctionEntryHook entry_hook) {
- g_entry_hook = entry_hook;
-}
-
-// static
void Debug::SetJitCodeEventHandler(v8::JitCodeEventHandler event_handler) {
g_jit_code_event_handler = event_handler;
}
@@ -38,11 +32,6 @@ void Debug::SetCodeRangeDeletedCallback(CodeRangeDeletedCallback callback) {
#endif
// static
-v8::FunctionEntryHook DebugImpl::GetFunctionEntryHook() {
- return g_entry_hook;
-}
-
-// static
v8::JitCodeEventHandler DebugImpl::GetJitCodeEventHandler() {
return g_jit_code_event_handler;
}