diff options
author | jeremy@chromium.org <jeremy@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-03-26 15:55:02 +0000 |
---|---|---|
committer | jeremy@chromium.org <jeremy@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-03-26 15:55:02 +0000 |
commit | ad5f54471a107a27a7d975f38651426b6c042fc3 (patch) | |
tree | 53f768a325cbe697577ec4773bf9d0c3d40a6bec /chrome/app/breakpad_mac.h | |
parent | b5c5cf54b6e984cbf8061da067398e90f9280d0d (diff) | |
download | chromium_src-ad5f54471a107a27a7d975f38651426b6c042fc3.zip chromium_src-ad5f54471a107a27a7d975f38651426b6c042fc3.tar.gz chromium_src-ad5f54471a107a27a7d975f38651426b6c042fc3.tar.bz2 |
First stab at Mac breakpad support.
breakpad_mac.mm still needs some work, there's a bunch of scaffolding in there referring to a custom version of Breakpad I've got going locally.
Review URL: http://codereview.chromium.org/53075
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@12553 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/app/breakpad_mac.h')
-rw-r--r-- | chrome/app/breakpad_mac.h | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/chrome/app/breakpad_mac.h b/chrome/app/breakpad_mac.h new file mode 100644 index 0000000..0a20e12 --- /dev/null +++ b/chrome/app/breakpad_mac.h @@ -0,0 +1,19 @@ +// 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. + +#ifndef CHROME_APP_BREAKPAD_MAC_H_ +#define CHROME_APP_BREAKPAD_MAC_H_ + +// This header defines the Chrome entry points for Breakpad integration. + +// Initializes Breakpad. +void InitCrashReporter(); + +// Is Breakpad enabled? +bool IsCrashReporterEnabled(); + +// Call on clean process shutdown. +void DestructCrashReporter(); + +#endif // CHROME_APP_BREAKPAD_MAC_H_ |