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:
1
AUTHORS
1
AUTHORS
@@ -362,6 +362,7 @@ Paul Wicks <pwicks86@gmail.com>
|
|||||||
Pavan Kumar Emani <pavan.e@samsung.com>
|
Pavan Kumar Emani <pavan.e@samsung.com>
|
||||||
Pavel Ivanov <paivanof@gmail.com>
|
Pavel Ivanov <paivanof@gmail.com>
|
||||||
Paweł Hajdan jr <phajdan.jr@gmail.com>
|
Paweł Hajdan jr <phajdan.jr@gmail.com>
|
||||||
|
Pawel Forysiuk <p.forysiuk@samsung.com>
|
||||||
Peng Jiang <leiyi.jp@gmail.com>
|
Peng Jiang <leiyi.jp@gmail.com>
|
||||||
Petar Jovanovic <petarj@mips.com>
|
Petar Jovanovic <petarj@mips.com>
|
||||||
Peter Beverloo <peter@chromium.org>
|
Peter Beverloo <peter@chromium.org>
|
||||||
|
@@ -52,7 +52,7 @@ static const char kBrowserPrettyNames[][10] = {
|
|||||||
|
|
||||||
// A mapping from process name to the type of browser.
|
// A mapping from process name to the type of browser.
|
||||||
static const struct {
|
static const struct {
|
||||||
const char process_name[16];
|
const char process_name[17];
|
||||||
BrowserType browser;
|
BrowserType browser;
|
||||||
} kBrowserBinaryNames[] = {
|
} kBrowserBinaryNames[] = {
|
||||||
{ "firefox", FIREFOX },
|
{ "firefox", FIREFOX },
|
||||||
@@ -62,7 +62,7 @@ static const struct {
|
|||||||
{ "iceweasel", ICEWEASEL },
|
{ "iceweasel", ICEWEASEL },
|
||||||
{ "opera", OPERA },
|
{ "opera", OPERA },
|
||||||
{ "konqueror", KONQUEROR },
|
{ "konqueror", KONQUEROR },
|
||||||
{ "epiphany-browse", EPIPHANY },
|
{ "epiphany-browser", EPIPHANY },
|
||||||
{ "epiphany", EPIPHANY },
|
{ "epiphany", EPIPHANY },
|
||||||
{ "midori", MIDORI },
|
{ "midori", MIDORI },
|
||||||
{ "", MAX_BROWSERS },
|
{ "", MAX_BROWSERS },
|
||||||
|
Reference in New Issue
Block a user