0

Fix typo in kBrowserBinaryNames for Epiphany Browser.

Because of the typo Epiphany Browser process would never
be matched thus never  be included in the memory summary.

Since this is my first patch to Chromium project I added myself to AUTHORS file.

BUG=NONE
TEST=NONE

Review URL: https://codereview.chromium.org/845733002

Cr-Commit-Position: refs/heads/master@{#312333}
This commit is contained in:
p.forysiuk
2015-01-21 06:01:09 -08:00
committed by Commit bot
parent 4cf3535f63
commit 52f6146bdb
2 changed files with 3 additions and 2 deletions

@ -362,6 +362,7 @@ Paul Wicks <pwicks86@gmail.com>
Pavan Kumar Emani <pavan.e@samsung.com>
Pavel Ivanov <paivanof@gmail.com>
Paweł Hajdan jr <phajdan.jr@gmail.com>
Pawel Forysiuk <p.forysiuk@samsung.com>
Peng Jiang <leiyi.jp@gmail.com>
Petar Jovanovic <petarj@mips.com>
Peter Beverloo <peter@chromium.org>

@ -52,7 +52,7 @@ static const char kBrowserPrettyNames[][10] = {
// A mapping from process name to the type of browser.
static const struct {
const char process_name[16];
const char process_name[17];
BrowserType browser;
} kBrowserBinaryNames[] = {
{ "firefox", FIREFOX },
@ -62,7 +62,7 @@ static const struct {
{ "iceweasel", ICEWEASEL },
{ "opera", OPERA },
{ "konqueror", KONQUEROR },
{ "epiphany-browse", EPIPHANY },
{ "epiphany-browser", EPIPHANY },
{ "epiphany", EPIPHANY },
{ "midori", MIDORI },
{ "", MAX_BROWSERS },