summaryrefslogtreecommitdiffstats
path: root/chrome/common/chrome_constants.cc
diff options
context:
space:
mode:
authorthomasvl@chromium.org <thomasvl@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-08-14 15:21:02 +0000
committerthomasvl@chromium.org <thomasvl@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-08-14 15:21:02 +0000
commitd891723f2e354c02f1e26870c3cc0e3291ddebfb (patch)
tree17665a57e4fdc4f13d12c31929eefda7a8f2d9fb /chrome/common/chrome_constants.cc
parente9e884f87d99f1977f15049c6565c43a2c8fdd8a (diff)
downloadchromium_src-d891723f2e354c02f1e26870c3cc0e3291ddebfb.zip
chromium_src-d891723f2e354c02f1e26870c3cc0e3291ddebfb.tar.gz
chromium_src-d891723f2e354c02f1e26870c3cc0e3291ddebfb.tar.bz2
Fix up the pid collection code for Mac OS X so it handles the different bundle names we use for the helpers.
TEST=page cycler tests should show memory for the renderers again. BUG=19021 Review URL: http://codereview.chromium.org/165531 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@23439 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/common/chrome_constants.cc')
-rw-r--r--chrome/common/chrome_constants.cc7
1 files changed, 4 insertions, 3 deletions
diff --git a/chrome/common/chrome_constants.cc b/chrome/common/chrome_constants.cc
index 2b32993..ca7f04e 100644
--- a/chrome/common/chrome_constants.cc
+++ b/chrome/common/chrome_constants.cc
@@ -17,11 +17,12 @@ const wchar_t kBrowserProcessExecutableName[] = L"chrome.exe";
#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)