| Index: chrome/installer/setup/installer_crash_reporter_client.cc
|
| diff --git a/chrome/installer/setup/installer_crash_reporter_client.cc b/chrome/installer/setup/installer_crash_reporter_client.cc
|
| index 4d97e50571e17fc21482a42b207d978d4cd405af..cb1a758f7363a4597c6eb603a42b2c533da85e2d 100644
|
| --- a/chrome/installer/setup/installer_crash_reporter_client.cc
|
| +++ b/chrome/installer/setup/installer_crash_reporter_client.cc
|
| @@ -77,14 +77,11 @@ bool InstallerCrashReporterClient::GetDeferredUploadsSupported(
|
| return false;
|
| }
|
|
|
| -bool InstallerCrashReporterClient::GetIsPerUserInstall(
|
| - const base::string16& exe_path) {
|
| +bool InstallerCrashReporterClient::GetIsPerUserInstall() {
|
| return is_per_user_install_;
|
| }
|
|
|
| -bool InstallerCrashReporterClient::GetShouldDumpLargerDumps(
|
| - bool is_per_user_install) {
|
| - DCHECK_EQ(is_per_user_install_, is_per_user_install);
|
| +bool InstallerCrashReporterClient::GetShouldDumpLargerDumps() {
|
| // Use large dumps for all but the stable channel.
|
| return !install_static::GetChromeChannelName().empty();
|
| }
|
|
|