Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(486)

Unified Diff: chrome/browser/task_manager/task_manager_child_process_resource_provider.h

Issue 15196003: Create task_manager namespace and wrap classes related to TaskManager with it. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase Created 7 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/task_manager/task_manager_child_process_resource_provider.h
diff --git a/chrome/browser/task_manager/task_manager_child_process_resource_provider.h b/chrome/browser/task_manager/task_manager_child_process_resource_provider.h
deleted file mode 100644
index a3452e878cd0100c2920ba1d953567378b0ec20a..0000000000000000000000000000000000000000
--- a/chrome/browser/task_manager/task_manager_child_process_resource_provider.h
+++ /dev/null
@@ -1,77 +0,0 @@
-// Copyright 2013 The Chromium Authors. All rights reserved.
-// 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_TASK_MANAGER_CHILD_PROCESS_RESOURCE_PROVIDER_H_
-#define CHROME_BROWSER_TASK_MANAGER_TASK_MANAGER_CHILD_PROCESS_RESOURCE_PROVIDER_H_
-
-#include <map>
-#include <vector>
-
-#include "base/basictypes.h"
-#include "chrome/browser/task_manager/task_manager.h"
-#include "content/public/browser/browser_child_process_observer.h"
-#include "content/public/browser/notification_registrar.h"
-
-class TaskManagerChildProcessResource;
-
-namespace content {
-struct ChildProcessData;
-}
-
-class TaskManagerChildProcessResourceProvider
- : public TaskManager::ResourceProvider,
- public content::BrowserChildProcessObserver {
- public:
- explicit TaskManagerChildProcessResourceProvider(TaskManager* task_manager);
-
- virtual TaskManager::Resource* GetResource(int origin_pid,
- int render_process_host_id,
- int routing_id) OVERRIDE;
- virtual void StartUpdating() OVERRIDE;
- virtual void StopUpdating() OVERRIDE;
-
- // content::BrowserChildProcessObserver methods:
- virtual void BrowserChildProcessHostConnected(
- const content::ChildProcessData& data) OVERRIDE;
- virtual void BrowserChildProcessHostDisconnected(
- const content::ChildProcessData& data) OVERRIDE;
-
- private:
- virtual ~TaskManagerChildProcessResourceProvider();
-
- // Retrieves information about the running ChildProcessHosts (performed in the
- // IO thread).
- virtual void RetrieveChildProcessData();
-
- // Notifies the UI thread that the ChildProcessHosts information have been
- // retrieved.
- virtual void ChildProcessDataRetreived(
- const std::vector<content::ChildProcessData>& child_processes);
-
- void AddToTaskManager(const content::ChildProcessData& child_process_data);
-
- TaskManager* task_manager_;
-
- // Whether we are currently reporting to the task manager. Used to ignore
- // notifications sent after StopUpdating().
- bool updating_;
-
- // Maps the actual resources (the ChildProcessData) to the Task Manager
- // resources.
- typedef std::map<base::ProcessHandle, TaskManagerChildProcessResource*>
- ChildProcessMap;
- ChildProcessMap resources_;
-
- // Maps the pids to the resources (used for quick access to the resource on
- // byte read notifications).
- typedef std::map<int, TaskManagerChildProcessResource*> PidResourceMap;
- PidResourceMap pid_to_resources_;
-
- // A scoped container for notification registries.
- content::NotificationRegistrar registrar_;
-
- DISALLOW_COPY_AND_ASSIGN(TaskManagerChildProcessResourceProvider);
-};
-
-#endif // CHROME_BROWSER_TASK_MANAGER_TASK_MANAGER_CHILD_PROCESS_RESOURCE_PROVIDER_H_

Powered by Google App Engine
This is Rietveld 408576698