| Index: chrome/app/chrome_crash_reporter_client.h
|
| diff --git a/chrome/app/chrome_crash_reporter_client.h b/chrome/app/chrome_crash_reporter_client.h
|
| index 9e45ed01abbda419384206fe512913d13c8a7072..80b069fdee887d2fde70c4d7c53d9a7fd3c66f3b 100644
|
| --- a/chrome/app/chrome_crash_reporter_client.h
|
| +++ b/chrome/app/chrome_crash_reporter_client.h
|
| @@ -17,8 +17,10 @@ class ChromeCrashReporterClient : public crash_reporter::CrashReporterClient {
|
| ~ChromeCrashReporterClient() override;
|
|
|
| // crash_reporter::CrashReporterClient implementation.
|
| +#if !defined(OS_MACOSX)
|
| void SetCrashReporterClientIdFromGUID(
|
| const std::string& client_guid) override;
|
| +#endif
|
| #if defined(OS_WIN)
|
| virtual bool GetAlternativeCrashDumpLocation(base::FilePath* crash_dir)
|
| override;
|
| @@ -61,10 +63,6 @@ class ChromeCrashReporterClient : public crash_reporter::CrashReporterClient {
|
| int GetAndroidMinidumpDescriptor() override;
|
| #endif
|
|
|
| -#if defined(OS_MACOSX)
|
| - void InstallAdditionalFilters(BreakpadRef breakpad) override;
|
| -#endif
|
| -
|
| bool EnableBreakpadForProcess(const std::string& process_type) override;
|
|
|
| private:
|
|
|