#include "chrome/browser/task_manager/providers/web_contents/background_contents_tag.h"
#include <memory>
#include "base/strings/utf_string_conversions.h"
#include "chrome/browser/background/background_contents.h"
#include "chrome/browser/background/background_contents_service.h"
#include "chrome/browser/background/background_contents_service_factory.h"
#include "chrome/browser/profiles/profile.h"
#include "chrome/browser/task_manager/providers/web_contents/background_contents_task.h"
#include "content/public/browser/web_contents.h"
#include "extensions/browser/extension_registry.h"
#include "extensions/common/extension.h"
#include "extensions/common/extension_set.h"
namespace task_manager {
std::unique_ptr<RendererTask> BackgroundContentsTag::CreateTask(
WebContentsTaskProvider*) const { … }
BackgroundContentsTag::BackgroundContentsTag(
content::WebContents* web_contents,
BackgroundContents* background_contents)
: … { … }
BackgroundContentsTag::~BackgroundContentsTag() { … }
}