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: http://src.chromium.org/svn/trunk/src/build@16367 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
This commit is contained in:
thomasvl@chromium.org 2009-05-19 12:24:55 +00:00
Родитель f5cfde9112
Коммит 36d748e055
1 изменённых файлов: 0 добавлений и 2 удалений

Просмотреть файл

@ -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