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

// Copyright 2023 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_INSPECTOR_EVENT_BREAKPOINTS_AGENT_H_
#define THIRD_PARTY_BLINK_RENDERER_CORE_INSPECTOR_INSPECTOR_EVENT_BREAKPOINTS_AGENT_H_

#include "third_party/blink/renderer/core/core_export.h"
#include "third_party/blink/renderer/core/inspector/inspector_base_agent.h"
#include "third_party/blink/renderer/core/inspector/inspector_session_state.h"
#include "third_party/blink/renderer/core/inspector/protocol/event_breakpoints.h"
#include "third_party/blink/renderer/platform/heap/collection_support/heap_hash_map.h"
#include "third_party/blink/renderer/platform/wtf/text/wtf_string.h"
#include "v8/include/v8-inspector.h"

namespace blink {

namespace probe {
class ExecuteScript;
class UserCallback;
}  // namespace probe

namespace protocol {
class DictionaryValue;
}  // namespace protocol

class CORE_EXPORT InspectorEventBreakpointsAgent final
    : public InspectorBaseAgent<protocol::EventBreakpoints::Metainfo> {};

}  // namespace blink

#endif  // THIRD_PARTY_BLINK_RENDERER_CORE_INSPECTOR_INSPECTOR_EVENT_BREAKPOINTS_AGENT_H_