
The methodology used to generate this CL is documented in https://crbug.com/1098010#c34. No-Try: true Bug: 1098010 Change-Id: Iafb266228260abedd345bc3e8c1d483c3a4dc4d6 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/3891087 Commit-Queue: Mark Mentovai <mark@chromium.org> Auto-Submit: Avi Drissman <avi@chromium.org> Owners-Override: Avi Drissman <avi@chromium.org> Reviewed-by: Mark Mentovai <mark@chromium.org> Cr-Commit-Position: refs/heads/main@{#1046550}
21 lines
422 B
C++
21 lines
422 B
C++
// Copyright 2014 The Chromium Authors
|
|
// 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_
|