Chromium Code Reviews| Index: blimp/engine/app/blimp_engine_crash_reporter_client.cc |
| diff --git a/blimp/engine/app/blimp_engine_crash_reporter_client.cc b/blimp/engine/app/blimp_engine_crash_reporter_client.cc |
| index e9b026c220ea0965d6dd9706c888d972724c0686..7a80f6b20bc6759e5eb181200c55dd304e54490c 100644 |
| --- a/blimp/engine/app/blimp_engine_crash_reporter_client.cc |
| +++ b/blimp/engine/app/blimp_engine_crash_reporter_client.cc |
| @@ -45,8 +45,12 @@ bool BlimpEngineCrashReporterClient::IsRunningUnattended() { |
| } |
| bool BlimpEngineCrashReporterClient::GetCollectStatsConsent() { |
| - // Always collect Blimp engine crash reports. |
| + // Always collect Blimp engine crash reports on official builds |
|
Kevin M
2016/05/18 16:46:42
Add a trailing dot.
marcinjb
2016/05/18 17:39:24
Done.
|
| +#ifdef OFFICIAL_BLIMP_BUILD |
| return true; |
| +#else |
| + return false; |
| +#endif // OFFICIAL_BLIMP_BUILD |
| } |
| bool BlimpEngineCrashReporterClient::EnableBreakpadForProcess( |