| Index: chrome/app/chrome_crash_reporter_client_mac.mm
|
| diff --git a/chrome/app/chrome_breakpad_client_mac.mm b/chrome/app/chrome_crash_reporter_client_mac.mm
|
| similarity index 88%
|
| rename from chrome/app/chrome_breakpad_client_mac.mm
|
| rename to chrome/app/chrome_crash_reporter_client_mac.mm
|
| index c9766b183f60d4b684945b1b8a3225b1d3ae525d..6bfa05d7e094f56347bb0f21eb21a3237d8002e6 100644
|
| --- a/chrome/app/chrome_breakpad_client_mac.mm
|
| +++ b/chrome/app/chrome_crash_reporter_client_mac.mm
|
| @@ -2,7 +2,7 @@
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| -#include "chrome/app/chrome_breakpad_client.h"
|
| +#include "chrome/app/chrome_crash_reporter_client.h"
|
|
|
| #include <CoreFoundation/CoreFoundation.h>
|
|
|
| @@ -33,7 +33,7 @@ bool NaClBreakpadCrashFilter(int exception_type,
|
|
|
| } // namespace
|
|
|
| -void ChromeBreakpadClient::InstallAdditionalFilters(BreakpadRef breakpad) {
|
| +void ChromeCrashReporterClient::InstallAdditionalFilters(BreakpadRef breakpad) {
|
| #if !defined(DISABLE_NACL)
|
| if (CommandLine::ForCurrentProcess()->GetSwitchValueASCII(
|
| switches::kProcessType) == switches::kNaClLoaderProcess) {
|
| @@ -42,7 +42,8 @@ void ChromeBreakpadClient::InstallAdditionalFilters(BreakpadRef breakpad) {
|
| #endif
|
| }
|
|
|
| -bool ChromeBreakpadClient::ReportingIsEnforcedByPolicy(bool* breakpad_enabled) {
|
| +bool ChromeCrashReporterClient::ReportingIsEnforcedByPolicy(
|
| + bool* breakpad_enabled) {
|
| base::ScopedCFTypeRef<CFStringRef> key(
|
| base::SysUTF8ToCFStringRef(policy::key::kMetricsReportingEnabled));
|
| Boolean key_valid;
|
|
|