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

Unified Diff: chrome/common/chrome_constants.cc

Issue 165531: Fix up the pid collection code for Mac OS X so it handles the different bundl... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 11 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 | « chrome/common/chrome_constants.h ('k') | chrome/test/chrome_process_util.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/common/chrome_constants.cc
===================================================================
--- chrome/common/chrome_constants.cc (revision 23431)
+++ chrome/common/chrome_constants.cc (working copy)
@@ -17,11 +17,12 @@
#elif defined(OS_LINUX)
const wchar_t kBrowserProcessExecutableName[] = L"chrome";
#elif defined(OS_MACOSX)
-const wchar_t kBrowserProcessExecutableName[] =
#if defined(GOOGLE_CHROME_BUILD)
- L"Google Chrome";
+const wchar_t kBrowserProcessExecutableName[] = L"Google Chrome";
+const wchar_t kHelperProcessExecutableName[] = L"Google Chrome Helper";
#else
- L"Chromium";
+const wchar_t kBrowserProcessExecutableName[] = L"Chromium";
+const wchar_t kHelperProcessExecutableName[] = L"Chromium Helper";
#endif // GOOGLE_CHROME_BUILD
#endif // OS_*
#if defined(OS_WIN)
« no previous file with comments | « chrome/common/chrome_constants.h ('k') | chrome/test/chrome_process_util.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698