| Index: chrome/installer/setup/installer_crash_reporter_client.h
|
| diff --git a/chrome/installer/setup/installer_crash_reporter_client.h b/chrome/installer/setup/installer_crash_reporter_client.h
|
| index 21dab7124ce7c15feb07a400443202c3147fb49f..530b47f61e43d29a8ae52356db7412110e5eeae2 100644
|
| --- a/chrome/installer/setup/installer_crash_reporter_client.h
|
| +++ b/chrome/installer/setup/installer_crash_reporter_client.h
|
| @@ -10,12 +10,18 @@
|
| #include "base/macros.h"
|
| #include "components/crash/content/app/crash_reporter_client.h"
|
|
|
| +namespace installer {
|
| +class InstallerState;
|
| +}
|
| +
|
| class InstallerCrashReporterClient
|
| : public crash_reporter::CrashReporterClient {
|
| public:
|
| - explicit InstallerCrashReporterClient(bool is_per_user_install);
|
| ~InstallerCrashReporterClient() override;
|
|
|
| + // Sets up the crash reporting system for the installer.
|
| + static void Configure(const installer::InstallerState&);
|
| +
|
| // crash_reporter::CrashReporterClient methods:
|
| void SetCrashReporterClientIdFromGUID(
|
| const std::string& client_guid) override;
|
| @@ -46,6 +52,8 @@ class InstallerCrashReporterClient
|
| bool EnableBreakpadForProcess(const std::string& process_type) override;
|
|
|
| private:
|
| + explicit InstallerCrashReporterClient(bool is_per_user_install);
|
| +
|
| bool is_per_user_install_;
|
|
|
| DISALLOW_COPY_AND_ASSIGN(InstallerCrashReporterClient);
|
|
|