// Copyright 2020 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef CHROME_BROWSER_TASK_MANAGER_PROVIDERS_SPARE_RENDER_PROCESS_HOST_TASK_PROVIDER_H_ #define CHROME_BROWSER_TASK_MANAGER_PROVIDERS_SPARE_RENDER_PROCESS_HOST_TASK_PROVIDER_H_ #include <memory> #include "base/callback_list.h" #include "chrome/browser/task_manager/providers/task_provider.h" #include "content/public/browser/render_process_host.h" namespace task_manager { class ChildProcessTask; // This provides a task that represents the spare RenderProcessHost process. class SpareRenderProcessHostTaskProvider : public TaskProvider { … }; } // namespace task_manager #endif // CHROME_BROWSER_TASK_MANAGER_PROVIDERS_SPARE_RENDER_PROCESS_HOST_TASK_PROVIDER_H_