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

Unified Diff: chrome/browser/memory_details.cc

Issue 10836313: Correctly determine extension process type on chrome://memory page. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 8 years, 4 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/memory_details.cc
===================================================================
--- chrome/browser/memory_details.cc (revision 152076)
+++ chrome/browser/memory_details.cc (working copy)
@@ -274,8 +274,10 @@
if (extension) {
string16 title = UTF8ToUTF16(extension->name());
process.titles.push_back(title);
+ process.renderer_type =
+ ProcessMemoryInformation::RENDERER_EXTENSION;
+ continue;
}
- continue;
}
if (!contents) {
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698