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

Unified Diff: chrome/browser/memory_details_android.cc

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/memory_details_android.cc
===================================================================
--- chrome/browser/memory_details_android.cc (revision 189692)
+++ chrome/browser/memory_details_android.cc (working copy)
@@ -54,9 +54,9 @@
pmi.num_processes = 1;
if (pmi.pid == base::GetCurrentProcId())
- pmi.type = content::PROCESS_TYPE_BROWSER;
+ pmi.process_type = content::PROCESS_TYPE_BROWSER;
else
- pmi.type = content::PROCESS_TYPE_UNKNOWN;
+ pmi.process_type = content::PROCESS_TYPE_UNKNOWN;
scoped_ptr<base::ProcessMetrics> metrics(
base::ProcessMetrics::CreateProcessMetrics(*i));

Powered by Google App Engine
This is Rietveld 408576698