Files
textmate/Frameworks/CrashReporter/src/CrashReporter.h
Allan Odgaard 6ec2f26d2c Don’t access user’s contacts during launch
Instead we access it when either we need to submit a crash report, when the preferences window open (where the contact address is shown), or when creating a new bundle (where email is also used for the bundle’s contact).
2014-02-23 17:10:31 +07:00

12 lines
417 B
Objective-C

#include <oak/misc.h>
PUBLIC extern NSString* const kUserDefaultsDisableCrashReportingKey;
PUBLIC extern NSString* const kUserDefaultsCrashReportsContactInfoKey;
PUBLIC @interface CrashReporter : NSObject
+ (CrashReporter*)sharedInstance;
- (void)setupUserDefaultsContact:(id)sender;
- (void)applicationDidFinishLaunching:(NSNotification*)aNotification;
- (void)postNewCrashReportsToURLString:(NSString*)aURL;
@end