diff options
author | thomasvl@chromium.org <thomasvl@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-07-11 00:06:07 +0000 |
---|---|---|
committer | thomasvl@chromium.org <thomasvl@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-07-11 00:06:07 +0000 |
commit | 24893327f0f72295fbdcd5ac672ff7a8920d7876 (patch) | |
tree | 024fe85ea4619ca0727caa6c6a3e8b8a89585522 /chrome/app/breakpad_mac_stubs.mm | |
parent | a1421ab576e6ce3b88f9115a3132b0128782e7cd (diff) | |
download | chromium_src-24893327f0f72295fbdcd5ac672ff7a8920d7876.zip chromium_src-24893327f0f72295fbdcd5ac672ff7a8920d7876.tar.gz chromium_src-24893327f0f72295fbdcd5ac672ff7a8920d7876.tar.bz2 |
Simplify how we stub breakpad. If breakpad is in, use the real file, if not, use the stubs. We already use the stubs on unittests, so this just makes the same thing apply to the app. This gets breakpad's slow steps out of the google chrome mac rolling build.
TEST=breakpad still works in official builds
BUG=none
TBR=mark@chromium.org
Review URL: http://codereview.chromium.org/149499
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@20443 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/app/breakpad_mac_stubs.mm')
-rw-r--r-- | chrome/app/breakpad_mac_stubs.mm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/app/breakpad_mac_stubs.mm b/chrome/app/breakpad_mac_stubs.mm index ea5cfdc..258e02a 100644 --- a/chrome/app/breakpad_mac_stubs.mm +++ b/chrome/app/breakpad_mac_stubs.mm @@ -5,7 +5,7 @@ #import "chrome/app/breakpad_mac.h" // Stubbed out versions of breakpad integration functions so we can compile -// unit tests without linking in Breakpad. +// without linking in Breakpad. bool IsCrashReporterDisabled() { return true; |