blob: fafb98cd8e052aebafff4575f5ca52918359928d [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"
9#include "v8/include/v8.h"
10
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_