blob: 581292b57b44d527d9f13fcc392149413e1c9f1a [file] [log] [blame]
jochen4879fd2c2014-09-16 15:04:291// 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 Zhang02f91da2021-04-26 19:47:385#ifndef GIN_DEBUG_IMPL_H_
6#define GIN_DEBUG_IMPL_H_
jochen4879fd2c2014-09-16 15:04:297
8#include "gin/public/debug.h"
Dan Elphick05acd602021-08-30 15:22:079#include "v8/include/v8-callbacks.h"
jochen4879fd2c2014-09-16 15:04:2910
11namespace gin {
12
13class DebugImpl {
14 public:
jochen4879fd2c2014-09-16 15:04:2915 static v8::JitCodeEventHandler GetJitCodeEventHandler();
jochen4879fd2c2014-09-16 15:04:2916};
17
18} // namespace gin
19
Lei Zhang02f91da2021-04-26 19:47:3820#endif // GIN_DEBUG_IMPL_H_