OLD | NEW |
1 // Copyright (c) 2011, Google Inc. | 1 // Copyright (c) 2011, Google Inc. |
2 // All rights reserved. | 2 // All rights reserved. |
3 // | 3 // |
4 // Redistribution and use in source and binary forms, with or without | 4 // Redistribution and use in source and binary forms, with or without |
5 // modification, are permitted provided that the following conditions are | 5 // modification, are permitted provided that the following conditions are |
6 // met: | 6 // met: |
7 // | 7 // |
8 // * Redistributions of source code must retain the above copyright | 8 // * Redistributions of source code must retain the above copyright |
9 // notice, this list of conditions and the following disclaimer. | 9 // notice, this list of conditions and the following disclaimer. |
10 // * Redistributions in binary form must reproduce the above | 10 // * Redistributions in binary form must reproduce the above |
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
55 #define BREAKPAD_REPORTER_EXE_LOCATION \ | 55 #define BREAKPAD_REPORTER_EXE_LOCATION \ |
56 "BreakpadReporterExeLocation" | 56 "BreakpadReporterExeLocation" |
57 #define BREAKPAD_LOGFILES "BreakpadLogFiles" | 57 #define BREAKPAD_LOGFILES "BreakpadLogFiles" |
58 #define BREAKPAD_LOGFILE_UPLOAD_SIZE "BreakpadLogFileTailSize" | 58 #define BREAKPAD_LOGFILE_UPLOAD_SIZE "BreakpadLogFileTailSize" |
59 #define BREAKPAD_REQUEST_COMMENTS "BreakpadRequestComments" | 59 #define BREAKPAD_REQUEST_COMMENTS "BreakpadRequestComments" |
60 #define BREAKPAD_COMMENTS "BreakpadComments" | 60 #define BREAKPAD_COMMENTS "BreakpadComments" |
61 #define BREAKPAD_REQUEST_EMAIL "BreakpadRequestEmail" | 61 #define BREAKPAD_REQUEST_EMAIL "BreakpadRequestEmail" |
62 #define BREAKPAD_EMAIL "BreakpadEmail" | 62 #define BREAKPAD_EMAIL "BreakpadEmail" |
63 #define BREAKPAD_SERVER_TYPE "BreakpadServerType" | 63 #define BREAKPAD_SERVER_TYPE "BreakpadServerType" |
64 #define BREAKPAD_SERVER_PARAMETER_DICT "BreakpadServerParameters" | 64 #define BREAKPAD_SERVER_PARAMETER_DICT "BreakpadServerParameters" |
| 65 #define BREAKPAD_IN_PROCESS "BreakpadInProcess" |
65 | 66 |
66 // The keys below are NOT user supplied, and are used internally. | 67 // The keys below are NOT user supplied, and are used internally. |
67 #define BREAKPAD_PROCESS_START_TIME "BreakpadProcStartTime" | 68 #define BREAKPAD_PROCESS_START_TIME "BreakpadProcStartTime" |
68 #define BREAKPAD_PROCESS_UP_TIME "BreakpadProcessUpTime" | 69 #define BREAKPAD_PROCESS_UP_TIME "BreakpadProcessUpTime" |
69 #define BREAKPAD_PROCESS_CRASH_TIME "BreakpadProcessCrashTime" | 70 #define BREAKPAD_PROCESS_CRASH_TIME "BreakpadProcessCrashTime" |
70 #define BREAKPAD_LOGFILE_KEY_PREFIX "BreakpadAppLogFile" | 71 #define BREAKPAD_LOGFILE_KEY_PREFIX "BreakpadAppLogFile" |
71 #define BREAKPAD_SERVER_PARAMETER_PREFIX "BreakpadServerParameterPrefix_" | 72 #define BREAKPAD_SERVER_PARAMETER_PREFIX "BreakpadServerParameterPrefix_" |
72 #define BREAKPAD_ON_DEMAND "BreakpadOnDemand" | 73 #define BREAKPAD_ON_DEMAND "BreakpadOnDemand" |
OLD | NEW |