#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 protocol {
class DictionaryValue;
}
class CORE_EXPORT InspectorEventBreakpointsAgent final
: public InspectorBaseAgent<protocol::EventBreakpoints::Metainfo> { … };
}
#endif