| 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 Debug::CodeRangeDeletedCallback g_code_range_deleted_callback = NULL; |
| 15 #endif |
| 12 } // namespace | 16 } // namespace |
| 13 | 17 |
| 14 // static | 18 // static |
| 15 void Debug::SetFunctionEntryHook(v8::FunctionEntryHook entry_hook) { | 19 void Debug::SetFunctionEntryHook(v8::FunctionEntryHook entry_hook) { |
| 16 g_entry_hook = entry_hook; | 20 g_entry_hook = entry_hook; |
| 17 } | 21 } |
| 18 | 22 |
| 19 // static | 23 // static |
| 20 void Debug::SetJitCodeEventHandler(v8::JitCodeEventHandler event_handler) { | 24 void Debug::SetJitCodeEventHandler(v8::JitCodeEventHandler event_handler) { |
| 21 g_jit_code_event_handler = event_handler; | 25 g_jit_code_event_handler = event_handler; |
| 22 } | 26 } |
| 23 | 27 |
| 28 #if defined(OS_WIN) |
| 29 // static |
| 30 void Debug::SetCodeRangeCreatedCallback(CodeRangeCreatedCallback callback) { |
| 31 g_code_range_created_callback = callback; |
| 32 } |
| 33 |
| 34 // static |
| 35 void Debug::SetCodeRangeDeletedCallback(CodeRangeDeletedCallback callback) { |
| 36 g_code_range_deleted_callback = callback; |
| 37 } |
| 38 #endif |
| 39 |
| 24 // static | 40 // static |
| 25 v8::FunctionEntryHook DebugImpl::GetFunctionEntryHook() { | 41 v8::FunctionEntryHook DebugImpl::GetFunctionEntryHook() { |
| 26 return g_entry_hook; | 42 return g_entry_hook; |
| 27 } | 43 } |
| 28 | 44 |
| 29 // static | 45 // static |
| 30 v8::JitCodeEventHandler DebugImpl::GetJitCodeEventHandler() { | 46 v8::JitCodeEventHandler DebugImpl::GetJitCodeEventHandler() { |
| 31 return g_jit_code_event_handler; | 47 return g_jit_code_event_handler; |
| 32 } | 48 } |
| 33 | 49 |
| 50 #if defined(OS_WIN) |
| 51 // static |
| 52 Debug::CodeRangeCreatedCallback DebugImpl::GetCodeRangeCreatedCallback() { |
| 53 return g_code_range_created_callback; |
| 54 } |
| 55 |
| 56 // static |
| 57 Debug::CodeRangeDeletedCallback DebugImpl::GetCodeRangeDeletedCallback() { |
| 58 return g_code_range_deleted_callback; |
| 59 } |
| 60 #endif |
| 61 |
| 34 } // namespace gin | 62 } // namespace gin |
| OLD | NEW |