// 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. #ifndef CHROME_BROWSER_TASK_MANAGER_PROVIDERS_BROWSER_PROCESS_TASK_H_ #define CHROME_BROWSER_TASK_MANAGER_PROVIDERS_BROWSER_PROCESS_TASK_H_ #include <stdint.h> #include "chrome/browser/task_manager/providers/task.h" namespace task_manager { // Defines the task that represents the one and only browser main process. class BrowserProcessTask : public Task { … }; } // namespace task_manager #endif // CHROME_BROWSER_TASK_MANAGER_PROVIDERS_BROWSER_PROCESS_TASK_H_