diff options
author | jeremy@chromium.org <jeremy@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-04-22 21:18:55 +0000 |
---|---|---|
committer | jeremy@chromium.org <jeremy@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-04-22 21:18:55 +0000 |
commit | cc3b1826c0dbf8aa92484a0510ecfbe98f591335 (patch) | |
tree | 23cf8a79671994333bb31d3e1393552f5a167091 /chrome/app/breakpad_mac_stubs.mm | |
parent | 04f94eb6d9cd8e0049a2decc7e96cba24d6903a1 (diff) | |
download | chromium_src-cc3b1826c0dbf8aa92484a0510ecfbe98f591335.zip chromium_src-cc3b1826c0dbf8aa92484a0510ecfbe98f591335.tar.gz chromium_src-cc3b1826c0dbf8aa92484a0510ecfbe98f591335.tar.bz2 |
Last chunk of OS X Breakpad integration:
* Link agasint Breakpad from public svn repo.
* Bump DEPS to new svn rev of Breakpad with fixes for 10.5 compilation.
* Fill in code to differentiate between processes types in crash report.
Review URL: http://codereview.chromium.org/88043
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@14245 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/app/breakpad_mac_stubs.mm')
-rw-r--r-- | chrome/app/breakpad_mac_stubs.mm | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/chrome/app/breakpad_mac_stubs.mm b/chrome/app/breakpad_mac_stubs.mm new file mode 100644 index 0000000..8497f4f --- /dev/null +++ b/chrome/app/breakpad_mac_stubs.mm @@ -0,0 +1,27 @@ +// Copyright (c) 2009 The Chromium Authors. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +#import "chrome/app/breakpad_mac.h" + +// Stubbed out versions of breakpad integration functions so we can compile +// without linking in Breakpad on non-official builds. + +bool IsCrashReporterEnabled() { + return false; +} + +void InitCrashProcessInfo() { +} + +void DestructCrashReporter() { +} + +void InitCrashReporter() { +} + +void SetCrashKeyValue(NSString* key, NSString* value) { +} + +void ClearCrashKeyValue(NSString* key) { +} |