Chromium Updater
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
717 B

13 years ago
  1. //
  2. // MGMSender.h
  3. // GeckoReporter
  4. //
  5. // Created by Mr. Gecko on 12/28/09.
  6. // Copyright (c) 2011 Mr. Gecko's Media (James Coleman). All rights reserved. http://mrgeckosmedia.com/
  7. //
  8. #import <Cocoa/Cocoa.h>
  9. #import "MGMSenderDelegate.h"
  10. @interface MGMSender : NSObject {
  11. id<MGMSenderDelegate> delegate;
  12. NSMutableData *receivedData;
  13. NSURLConnection *theConnection;
  14. }
  15. - (void)sendReport:(NSString *)theReportPath reportDate:(NSDate *)theReportDate userReport:(NSString *)theUserReport delegate:(id)theDelegate;
  16. - (void)sendBug:(NSString *)theBug reproduce:(NSString *)theReproduce delegate:(id)theDelegate;
  17. - (void)sendMessage:(NSString *)theMessage subject:(NSString *)theSubject delegate:(id)theDelegate;
  18. @end