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

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

Issue 12662019: Split the ProcessType enum into process types that content knows about (which will remain in src\co… (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 7 years, 9 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_resource_providers.h
===================================================================
--- chrome/browser/task_manager/task_manager_resource_providers.h (revision 189692)
+++ chrome/browser/task_manager/task_manager_resource_providers.h (working copy)
@@ -324,7 +324,7 @@
class TaskManagerChildProcessResource : public TaskManager::Resource {
public:
- TaskManagerChildProcessResource(content::ProcessType type,
+ TaskManagerChildProcessResource(int process_type,
const string16& name,
base::ProcessHandle handle,
int unique_process_id);
@@ -348,7 +348,7 @@
// process would be "Plug-in: Flash" when name is "Flash".
string16 GetLocalizedTitle() const;
- content::ProcessType type_;
+ int process_type_;
string16 name_;
base::ProcessHandle handle_;
int pid_;

Powered by Google App Engine
This is Rietveld 408576698