#ifndef COMPONENTS_UI_DEVTOOLS_TRACING_AGENT_H_
#define COMPONENTS_UI_DEVTOOLS_TRACING_AGENT_H_
#include <memory>
#include <string>
#include <utility>
#include "base/functional/callback.h"
#include "base/memory/weak_ptr.h"
#include "base/trace_event/trace_config.h"
#include "components/ui_devtools/devtools_base_agent.h"
#include "components/ui_devtools/tracing.h"
namespace base {
class RepeatingTimer;
}
namespace ui_devtools {
class ConnectorDelegate;
class UI_DEVTOOLS_EXPORT TracingAgent
: public UiDevToolsBaseAgent<protocol::Tracing::Metainfo> { … };
}
#endif