diff options
author | mark@chromium.org <mark@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-08-11 00:23:19 +0000 |
---|---|---|
committer | mark@chromium.org <mark@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-08-11 00:23:19 +0000 |
commit | bca7c76708234959efe907c85bb729df27db1e7f (patch) | |
tree | 1cd84d02629c01ed493e5a57bf532ae1cef9e59b /chrome/app/helper-Info.plist | |
parent | f4d6173a1f95178f4671ba88459db196badfdfac (diff) | |
download | chromium_src-bca7c76708234959efe907c85bb729df27db1e7f.zip chromium_src-bca7c76708234959efe907c85bb729df27db1e7f.tar.gz chromium_src-bca7c76708234959efe907c85bb729df27db1e7f.tar.bz2 |
Provide a separate app bundle for subprocesses like the renderer on the Mac.
Remove LSUIElement and related hacks from the browser's app bundle.
BUG=8044
TEST=Observe one Chromium and one or more Chromium Helper processes in
Activity Monitor
Review URL: http://codereview.chromium.org/164177
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@22981 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/app/helper-Info.plist')
-rw-r--r-- | chrome/app/helper-Info.plist | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/chrome/app/helper-Info.plist b/chrome/app/helper-Info.plist new file mode 100644 index 0000000..9aeacff --- /dev/null +++ b/chrome/app/helper-Info.plist @@ -0,0 +1,28 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> +<plist version="1.0"> +<dict> + <key>CFBundleDevelopmentRegion</key> + <string>English</string> + <key>CFBundleExecutable</key> + <string>${EXECUTABLE_NAME}</string> + <key>CFBundleIdentifier</key> + <string>${CHROMIUM_BUNDLE_ID}.helper</string> + <key>CFBundleInfoDictionaryVersion</key> + <string>6.0</string> + <key>CFBundleName</key> + <string>${CHROMIUM_SHORT_NAME} Helper</string> + <key>CFBundlePackageType</key> + <string>APPL</string> + <key>CFBundleSignature</key> + <string>????</string> + <key>CFBundleVersion</key> + <string>0.1</string> + <key>LSFileQuarantineEnabled</key> + <true/> + <key>LSMinimumSystemVersion</key> + <string>10.5.0</string> + <key>LSUIElement</key> + <string>1</string> +</dict> +</plist> |