#ifndef CONTENT_BROWSER_DEVTOOLS_PROTOCOL_BACKGROUND_SERVICE_HANDLER_H_
#define CONTENT_BROWSER_DEVTOOLS_PROTOCOL_BACKGROUND_SERVICE_HANDLER_H_
#include <memory>
#include <string>
#include <vector>
#include "base/containers/flat_set.h"
#include "base/memory/raw_ptr.h"
#include "base/memory/weak_ptr.h"
#include "content/browser/devtools/devtools_background_services.pb.h"
#include "content/browser/devtools/devtools_background_services_context_impl.h"
#include "content/browser/devtools/protocol/background_service.h"
#include "content/browser/devtools/protocol/devtools_domain_handler.h"
namespace content {
class DevToolsBackgroundServicesContext;
class RenderFrameHostImpl;
namespace protocol {
class BackgroundServiceHandler
: public DevToolsDomainHandler,
public BackgroundService::Backend,
public DevToolsBackgroundServicesContextImpl::EventObserver { … };
}
}
#endif