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

Unified Diff: chrome/browser/memory_details_linux.cc

Issue 845733002: Fix typo in kBrowserBinaryNames for Epiphany Browser. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 11 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 | « AUTHORS ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/memory_details_linux.cc
diff --git a/chrome/browser/memory_details_linux.cc b/chrome/browser/memory_details_linux.cc
index 3d7df23880ff13aad98defef6eed129f102d604c..c3ca3096178c74c2a22585ee862a568bd9fd46f3 100644
--- a/chrome/browser/memory_details_linux.cc
+++ b/chrome/browser/memory_details_linux.cc
@@ -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 },
« no previous file with comments | « AUTHORS ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698