
Now that v8.h has been split into many parts, include only the parts that are needed. Bug: v8:11965 Change-Id: Id7557c588354a88533268d51f5fcdfc4fe29a733 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/3122173 Commit-Queue: Leszek Swirski <leszeks@chromium.org> Auto-Submit: Dan Elphick <delphick@chromium.org> Reviewed-by: Leszek Swirski <leszeks@chromium.org> Cr-Commit-Position: refs/heads/main@{#916424}
21 lines
444 B
C++
21 lines
444 B
C++
// Copyright 2014 The Chromium Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
// found in the LICENSE file.
|
|
|
|
#ifndef GIN_DEBUG_IMPL_H_
|
|
#define GIN_DEBUG_IMPL_H_
|
|
|
|
#include "gin/public/debug.h"
|
|
#include "v8/include/v8-callbacks.h"
|
|
|
|
namespace gin {
|
|
|
|
class DebugImpl {
|
|
public:
|
|
static v8::JitCodeEventHandler GetJitCodeEventHandler();
|
|
};
|
|
|
|
} // namespace gin
|
|
|
|
#endif // GIN_DEBUG_IMPL_H_
|