// Copyright 2015 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "chrome/browser/task_manager/providers/web_contents/guest_tag.h" #include <memory> namespace task_manager { std::unique_ptr<RendererTask> GuestTag::CreateTask( WebContentsTaskProvider*) const { … } GuestTag::GuestTag(content::WebContents* web_contents) : … { … } GuestTag::~GuestTag() { … } } // namespace task_manager