| Index: chromecast/crash/android/cast_crash_reporter_client_android.h
|
| diff --git a/chromecast/crash/android/cast_crash_reporter_client_android.h b/chromecast/crash/android/cast_crash_reporter_client_android.h
|
| index e98eef72605b0ac161193879382c74063da9c009..3f296ab63bf9190902e4a15dd9e3b9653a14e7f9 100644
|
| --- a/chromecast/crash/android/cast_crash_reporter_client_android.h
|
| +++ b/chromecast/crash/android/cast_crash_reporter_client_android.h
|
| @@ -13,7 +13,7 @@ namespace chromecast {
|
| class CastCrashReporterClientAndroid
|
| : public crash_reporter::CrashReporterClient {
|
| public:
|
| - CastCrashReporterClientAndroid();
|
| + explicit CastCrashReporterClientAndroid(const std::string& process_type);
|
| ~CastCrashReporterClientAndroid() override;
|
|
|
| // crash_reporter::CrashReporterClient implementation:
|
| @@ -28,6 +28,8 @@ class CastCrashReporterClientAndroid
|
| size_t RegisterCrashKeys() override;
|
|
|
| private:
|
| + std::string process_type_;
|
| +
|
| DISALLOW_COPY_AND_ASSIGN(CastCrashReporterClientAndroid);
|
| };
|
|
|
|
|