Home | History | Annotate | Download | only in app
      1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
      2 // Use of this source code is governed by a BSD-style license that can be
      3 // found in the LICENSE file.
      4 
      5 #ifndef CHROME_APP_BREAKPAD_MAC_H_
      6 #define CHROME_APP_BREAKPAD_MAC_H_
      7 
      8 // This header defines the Chrome entry points for Breakpad integration.
      9 
     10 // Initializes Breakpad.
     11 void InitCrashReporter();
     12 
     13 // Give Breakpad a chance to store information about the current process.
     14 // Extra information requires a parsed command line, so call this after
     15 // CommandLine::Init has been called.
     16 void InitCrashProcessInfo();
     17 
     18 // Is Breakpad enabled?
     19 bool IsCrashReporterEnabled();
     20 
     21 #endif  // CHROME_APP_BREAKPAD_MAC_H_
     22