summaryrefslogtreecommitdiffstats
path: root/chrome/app/breakpad_mac_stubs.mm
diff options
context:
space:
mode:
authorjeremy@chromium.org <jeremy@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-05-22 02:02:00 +0000
committerjeremy@chromium.org <jeremy@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-05-22 02:02:00 +0000
commit139ec96dc6f26a24d8812aad4470f00b36ecee52 (patch)
treea10a96e7eed1bd4dec6a835b670be2af5d7e4956 /chrome/app/breakpad_mac_stubs.mm
parentd09cd49e9312e576c3f24764d1e542bd7084094c (diff)
downloadchromium_src-139ec96dc6f26a24d8812aad4470f00b36ecee52.zip
chromium_src-139ec96dc6f26a24d8812aad4470f00b36ecee52.tar.gz
chromium_src-139ec96dc6f26a24d8812aad4470f00b36ecee52.tar.bz2
1)When we enabled breakpad on first run we weren't correctly setting the process type.
2)Fixed another logic inversion in SetActiveRendererURL. 3)Change IsCrashReporterEnabled-> IsCrashReporterDisabled to prevent future confusion since that was the question all the callers where askign anyway. Review URL: http://codereview.chromium.org/113737 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@16707 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/app/breakpad_mac_stubs.mm')
-rw-r--r--chrome/app/breakpad_mac_stubs.mm4
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/app/breakpad_mac_stubs.mm b/chrome/app/breakpad_mac_stubs.mm
index d70fce6..ea5cfdc 100644
--- a/chrome/app/breakpad_mac_stubs.mm
+++ b/chrome/app/breakpad_mac_stubs.mm
@@ -7,8 +7,8 @@
// Stubbed out versions of breakpad integration functions so we can compile
// unit tests without linking in Breakpad.
-bool IsCrashReporterEnabled() {
- return false;
+bool IsCrashReporterDisabled() {
+ return true;
}
void InitCrashProcessInfo() {