chromium/third_party/blink/renderer/core/inspector/thread_debugger_common_impl.h

// Copyright 2016 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef THIRD_PARTY_BLINK_RENDERER_CORE_INSPECTOR_THREAD_DEBUGGER_COMMON_IMPL_H_
#define THIRD_PARTY_BLINK_RENDERER_CORE_INSPECTOR_THREAD_DEBUGGER_COMMON_IMPL_H_

#include <memory>

#include "third_party/blink/renderer/platform/bindings/thread_debugger.h"
#include "third_party/blink/renderer/platform/timer.h"
#include "third_party/blink/renderer/platform/wtf/vector.h"

namespace WTF {
class String;
}  // namespace WTF

namespace blink {

class ExecutionContext;
class SourceLocation;

// Implementation class of "ThreadDebugger" that is an abstract class in
// platform/bindings. CommonImpl means the common implementation among
// MainThreadDebugger and WorkerThreadDebugger.
class ThreadDebuggerCommonImpl : public ThreadDebugger {};

}  // namespace blink

namespace WTF {

template <>
struct CrossThreadCopier<v8_inspector::V8StackTraceId> {};

}  // namespace WTF

#endif  // THIRD_PARTY_BLINK_RENDERER_CORE_INSPECTOR_THREAD_DEBUGGER_COMMON_IMPL_H_