| Index: base/base_switches.cc
|
| diff --git a/base/base_switches.cc b/base/base_switches.cc
|
| index bdd7b62d475b155f4452a40ffff88181678fc7dd..d6b7d02fbe41d7948fcfc64dd967474cdafe319f 100644
|
| --- a/base/base_switches.cc
|
| +++ b/base/base_switches.cc
|
| @@ -15,6 +15,11 @@ const char kDebugOnStart[] = "debug-on-start";
|
| // Disables the crash reporting.
|
| const char kDisableBreakpad[] = "disable-breakpad";
|
|
|
| +// Indicates that crash reporting should be enabled. On platforms where helper
|
| +// processes cannot access to files needed to make this decision, this flag is
|
| +// generated internally.
|
| +const char kEnableCrashReporter[] = "enable-crash-reporter";
|
| +
|
| // Enable DCHECKs in release mode.
|
| const char kEnableDCHECK[] = "enable-dcheck";
|
|
|
| @@ -49,12 +54,4 @@ const char kWaitForDebugger[] = "wait-for-debugger";
|
| // Sends a pretty-printed version of tracing info to the console.
|
| const char kTraceToConsole[] = "trace-to-console";
|
|
|
| -#if defined(OS_POSIX)
|
| -// A flag, generated internally for renderer and other helper process command
|
| -// lines on Linux and Mac. It tells the helper process to enable crash dumping
|
| -// and reporting, because helpers cannot access the files needed to make this
|
| -// decision.
|
| -const char kEnableCrashReporter[] = "enable-crash-reporter";
|
| -#endif
|
| -
|
| } // namespace switches
|
|
|