| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "gin/debug_impl.h" | 5 #include "gin/debug_impl.h" |
| 6 | 6 |
| 7 namespace gin { | 7 namespace gin { |
| 8 | 8 |
| 9 namespace { | 9 namespace { |
| 10 v8::FunctionEntryHook g_entry_hook = NULL; | 10 v8::FunctionEntryHook g_entry_hook = NULL; |
| 11 v8::JitCodeEventHandler g_jit_code_event_handler = NULL; | 11 v8::JitCodeEventHandler g_jit_code_event_handler = NULL; |
| 12 #if defined(OS_WIN) |
| 13 Debug::CodeRangeCreatedCallback g_code_range_created_callback = NULL; |
| 14 #endif |
| 12 } // namespace | 15 } // namespace |
| 13 | 16 |
| 14 // static | 17 // static |
| 15 void Debug::SetFunctionEntryHook(v8::FunctionEntryHook entry_hook) { | 18 void Debug::SetFunctionEntryHook(v8::FunctionEntryHook entry_hook) { |
| 16 g_entry_hook = entry_hook; | 19 g_entry_hook = entry_hook; |
| 17 } | 20 } |
| 18 | 21 |
| 19 // static | 22 // static |
| 20 void Debug::SetJitCodeEventHandler(v8::JitCodeEventHandler event_handler) { | 23 void Debug::SetJitCodeEventHandler(v8::JitCodeEventHandler event_handler) { |
| 21 g_jit_code_event_handler = event_handler; | 24 g_jit_code_event_handler = event_handler; |
| 22 } | 25 } |
| 23 | 26 |
| 27 #if defined(OS_WIN) |
| 28 // static |
| 29 void Debug::SetCodeRangeCreatedCallback(CodeRangeCreatedCallback callback) { |
| 30 g_code_range_created_callback = callback; |
| 31 } |
| 32 #endif |
| 33 |
| 24 // static | 34 // static |
| 25 v8::FunctionEntryHook DebugImpl::GetFunctionEntryHook() { | 35 v8::FunctionEntryHook DebugImpl::GetFunctionEntryHook() { |
| 26 return g_entry_hook; | 36 return g_entry_hook; |
| 27 } | 37 } |
| 28 | 38 |
| 29 // static | 39 // static |
| 30 v8::JitCodeEventHandler DebugImpl::GetJitCodeEventHandler() { | 40 v8::JitCodeEventHandler DebugImpl::GetJitCodeEventHandler() { |
| 31 return g_jit_code_event_handler; | 41 return g_jit_code_event_handler; |
| 32 } | 42 } |
| 33 | 43 |
| 44 #if defined(OS_WIN) |
| 45 // static |
| 46 Debug::CodeRangeCreatedCallback DebugImpl::GetCodeRangeCreatedCallback() { |
| 47 return g_code_range_created_callback; |
| 48 } |
| 49 #endif |
| 50 |
| 34 } // namespace gin | 51 } // namespace gin |
| OLD | NEW |