Commit 04d9cc40 authored by halyavin@google.com's avatar halyavin@google.com

Correctly determine extension renderer type on chrome://memory page.

Previously "continue" statement left renderer_type undefined.

BUG= 140305
TEST= open chrome://memory page if NaCl extension is opened.

Review URL: https://chromiumcodereview.appspot.com/10836313

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@152160 0039d316-1c4b-4281-b951-d872f2087c98
parent b1912d59
...@@ -274,8 +274,10 @@ void MemoryDetails::CollectChildInfoOnUIThread() { ...@@ -274,8 +274,10 @@ void MemoryDetails::CollectChildInfoOnUIThread() {
if (extension) { if (extension) {
string16 title = UTF8ToUTF16(extension->name()); string16 title = UTF8ToUTF16(extension->name());
process.titles.push_back(title); process.titles.push_back(title);
process.renderer_type =
ProcessMemoryInformation::RENDERER_EXTENSION;
continue;
} }
continue;
} }
if (!contents) { if (!contents) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment