jochen | 4879fd2c | 2014-09-16 15:04:29 | [diff] [blame] | 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 |
| 3 | // found in the LICENSE file. |
| 4 | |
Lei Zhang | 02f91da | 2021-04-26 19:47:38 | [diff] [blame] | 5 | #ifndef GIN_DEBUG_IMPL_H_ |
| 6 | #define GIN_DEBUG_IMPL_H_ |
jochen | 4879fd2c | 2014-09-16 15:04:29 | [diff] [blame] | 7 | |
| 8 | #include "gin/public/debug.h" |
Dan Elphick | 05acd60 | 2021-08-30 15:22:07 | [diff] [blame] | 9 | #include "v8/include/v8-callbacks.h" |
jochen | 4879fd2c | 2014-09-16 15:04:29 | [diff] [blame] | 10 | |
| 11 | namespace gin { |
| 12 | |
| 13 | class DebugImpl { |
| 14 | public: |
jochen | 4879fd2c | 2014-09-16 15:04:29 | [diff] [blame] | 15 | static v8::JitCodeEventHandler GetJitCodeEventHandler(); |
jochen | 4879fd2c | 2014-09-16 15:04:29 | [diff] [blame] | 16 | }; |
| 17 | |
| 18 | } // namespace gin |
| 19 | |
Lei Zhang | 02f91da | 2021-04-26 19:47:38 | [diff] [blame] | 20 | #endif // GIN_DEBUG_IMPL_H_ |