Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(153)

Unified Diff: common/mac/launch_reporter.h

Issue 571523004: Mac: Add support for in-process crash reporting (Closed) Base URL: https://chromium.googlesource.com/external/google-breakpad/src.git@master
Patch Set: Fixes for Mark Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: common/mac/launch_reporter.h
diff --git a/client/mac/testapp/TestClass.h b/common/mac/launch_reporter.h
similarity index 81%
copy from client/mac/testapp/TestClass.h
copy to common/mac/launch_reporter.h
index 0a6d736d17f77e8f53e6369554e330314cab9fe3..ff1cb257e439363881e64ae149c45d20d72159d9 100644
--- a/client/mac/testapp/TestClass.h
+++ b/common/mac/launch_reporter.h
@@ -1,4 +1,4 @@
-// Copyright (c) 2006, Google Inc.
+// Copyright (c) 2014, Google Inc.
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
@@ -27,11 +27,12 @@
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Mark Mentovai 2014/09/15 13:38:44 This file needs #include guards.
Andre 2014/09/15 17:42:39 Done.
-#import <Cocoa/Cocoa.h>
+namespace google_breakpad {
-@interface TestClass : NSObject {
-}
+// Launch the crash dump sender app.
+// |reporterExecutablePath| is the path to the sender executable.
+// |configFilePath| is the path to the config file.
+void LaunchReporter(const char *reporterExecutablePath,
Mark Mentovai 2014/09/15 13:38:44 You’re not supposed to use camelCase naming for pa
Andre 2014/09/15 17:42:39 Done. Renamed the local variable timeoutCount to t
+ const char *configFilePath);
-- (void)wait;
-
-@end
+} // namespace google_breakpad

Powered by Google App Engine
This is Rietveld 408576698