| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef CHROME_APP_CHROME_CRASH_REPORTER_CLIENT_H_ | 5 #ifndef CHROME_APP_CHROME_CRASH_REPORTER_CLIENT_H_ |
| 6 #define CHROME_APP_CHROME_CRASH_REPORTER_CLIENT_H_ | 6 #define CHROME_APP_CHROME_CRASH_REPORTER_CLIENT_H_ |
| 7 | 7 |
| 8 #include "base/basictypes.h" | 8 #include "base/basictypes.h" |
| 9 #include "base/compiler_specific.h" | 9 #include "base/compiler_specific.h" |
| 10 #include "components/crash/app/crash_reporter_client.h" | 10 #include "components/crash/app/crash_reporter_client.h" |
| (...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 54 bool GetCollectStatsConsent() override; | 54 bool GetCollectStatsConsent() override; |
| 55 | 55 |
| 56 #if defined(OS_WIN) || defined(OS_MACOSX) | 56 #if defined(OS_WIN) || defined(OS_MACOSX) |
| 57 bool ReportingIsEnforcedByPolicy(bool* breakpad_enabled) override; | 57 bool ReportingIsEnforcedByPolicy(bool* breakpad_enabled) override; |
| 58 #endif | 58 #endif |
| 59 | 59 |
| 60 #if defined(OS_ANDROID) | 60 #if defined(OS_ANDROID) |
| 61 int GetAndroidMinidumpDescriptor() override; | 61 int GetAndroidMinidumpDescriptor() override; |
| 62 #endif | 62 #endif |
| 63 | 63 |
| 64 #if defined(OS_MACOSX) | |
| 65 void InstallAdditionalFilters(BreakpadRef breakpad) override; | |
| 66 #endif | |
| 67 | |
| 68 bool EnableBreakpadForProcess(const std::string& process_type) override; | 64 bool EnableBreakpadForProcess(const std::string& process_type) override; |
| 69 | 65 |
| 70 private: | 66 private: |
| 71 DISALLOW_COPY_AND_ASSIGN(ChromeCrashReporterClient); | 67 DISALLOW_COPY_AND_ASSIGN(ChromeCrashReporterClient); |
| 72 }; | 68 }; |
| 73 | 69 |
| 74 } // namespace chrome | 70 } // namespace chrome |
| 75 | 71 |
| 76 #endif // CHROME_APP_CHROME_CRASH_REPORTER_CLIENT_H_ | 72 #endif // CHROME_APP_CHROME_CRASH_REPORTER_CLIENT_H_ |
| OLD | NEW |