#ifndef COMPONENTS_UI_DEVTOOLS_DOM_AGENT_H_
#define COMPONENTS_UI_DEVTOOLS_DOM_AGENT_H_
#include <memory>
#include <string>
#include <unordered_map>
#include <vector>
#include "base/observer_list.h"
#include "components/ui_devtools/devtools_base_agent.h"
#include "components/ui_devtools/devtools_export.h"
#include "components/ui_devtools/dom.h"
#include "components/ui_devtools/ui_element_delegate.h"
namespace ui_devtools {
class UIElement;
class DOMAgentObserver { … };
class UI_DEVTOOLS_EXPORT DOMAgent
: public UiDevToolsBaseAgent<protocol::DOM::Metainfo>,
public UIElementDelegate { … };
}
#endif