debug_impl.h 444 B

1234567891011121314151617181920
  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. #ifndef GIN_DEBUG_IMPL_H_
  5. #define GIN_DEBUG_IMPL_H_
  6. #include "gin/public/debug.h"
  7. #include "v8/include/v8-callbacks.h"
  8. namespace gin {
  9. class DebugImpl {
  10. public:
  11. static v8::JitCodeEventHandler GetJitCodeEventHandler();
  12. };
  13. } // namespace gin
  14. #endif // GIN_DEBUG_IMPL_H_