Chromium Code Reviews| 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 |