diff options
author | thomasvl@chromium.org <thomasvl@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-05-19 12:24:55 +0000 |
---|---|---|
committer | thomasvl@chromium.org <thomasvl@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-05-19 12:24:55 +0000 |
commit | 09f334c4b2b26dc7a861eb960cb37184a48046b3 (patch) | |
tree | 99c30cc38c8ea405d4816bfb70e11130de067fdd /build | |
parent | 2da7f0b0fcbcfd42922985b49784e07f555a9aa9 (diff) | |
download | chromium_src-09f334c4b2b26dc7a861eb960cb37184a48046b3.zip chromium_src-09f334c4b2b26dc7a861eb960cb37184a48046b3.tar.gz chromium_src-09f334c4b2b26dc7a861eb960cb37184a48046b3.tar.bz2 |
Remove two todo's since the pref controls initializing breakpad, and if users opt in at that level, we just want to send the crashes.
Review URL: http://codereview.chromium.org/113553
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@16367 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'build')
-rwxr-xr-x | build/mac/tweak_app_infoplist | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/build/mac/tweak_app_infoplist b/build/mac/tweak_app_infoplist index 23c3984..5d40460 100755 --- a/build/mac/tweak_app_infoplist +++ b/build/mac/tweak_app_infoplist @@ -135,7 +135,6 @@ if [ "${INCLUDE_BREAKPAD}" == "1" ] ; then defaults write "${TMP_INFO_PLIST_DEFAULTS}" \ BreakpadVersion -string "${FULL_VERSION}" defaults write "${TMP_INFO_PLIST_DEFAULTS}" BreakpadSendAndExit "YES" - # TODO: remove/update this when we have first launch defaults write "${TMP_INFO_PLIST_DEFAULTS}" BreakpadSkipConfirm "YES" else # Make sure the keys aren't there, || true to avoid errors if they aren't. @@ -145,7 +144,6 @@ else defaults delete "${TMP_INFO_PLIST_DEFAULTS}" BreakpadProductDisplay || true defaults delete "${TMP_INFO_PLIST_DEFAULTS}" BreakpadVersion || true defaults delete "${TMP_INFO_PLIST_DEFAULTS}" BreakpadSendAndExit || true - # TODO: remove/update this when we have first launch defaults delete "${TMP_INFO_PLIST_DEFAULTS}" BreakpadSkipConfirm || true fi |