| 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 #include "components/crash/app/crash_reporter_client.h" | 5 #include "components/crash/app/crash_reporter_client.h" |
| 6 | 6 |
| 7 #include "base/files/file_path.h" | 7 #include "base/files/file_path.h" |
| 8 #include "base/logging.h" | 8 #include "base/logging.h" |
| 9 | 9 |
| 10 namespace crash_reporter { | 10 namespace crash_reporter { |
| (...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 79 #endif | 79 #endif |
| 80 | 80 |
| 81 #if defined(OS_POSIX) && !defined(OS_MACOSX) && !defined(OS_IOS) | 81 #if defined(OS_POSIX) && !defined(OS_MACOSX) && !defined(OS_IOS) |
| 82 void CrashReporterClient::GetProductNameAndVersion(const char** product_name, | 82 void CrashReporterClient::GetProductNameAndVersion(const char** product_name, |
| 83 const char** version) { | 83 const char** version) { |
| 84 } | 84 } |
| 85 | 85 |
| 86 base::FilePath CrashReporterClient::GetReporterLogFilename() { | 86 base::FilePath CrashReporterClient::GetReporterLogFilename() { |
| 87 return base::FilePath(); | 87 return base::FilePath(); |
| 88 } | 88 } |
| 89 |
| 90 bool CrashReporterClient::HandleCrashDump(const char* crashdump_filename) { |
| 91 return false; |
| 92 } |
| 89 #endif | 93 #endif |
| 90 | 94 |
| 91 bool CrashReporterClient::GetCrashDumpLocation(base::FilePath* crash_dir) { | 95 bool CrashReporterClient::GetCrashDumpLocation(base::FilePath* crash_dir) { |
| 92 return false; | 96 return false; |
| 93 } | 97 } |
| 94 | 98 |
| 95 size_t CrashReporterClient::RegisterCrashKeys() { | 99 size_t CrashReporterClient::RegisterCrashKeys() { |
| 96 return 0; | 100 return 0; |
| 97 } | 101 } |
| 98 | 102 |
| (...skipping 21 matching lines...) Expand all Loading... |
| 120 void CrashReporterClient::InstallAdditionalFilters(BreakpadRef breakpad) { | 124 void CrashReporterClient::InstallAdditionalFilters(BreakpadRef breakpad) { |
| 121 } | 125 } |
| 122 #endif | 126 #endif |
| 123 | 127 |
| 124 bool CrashReporterClient::EnableBreakpadForProcess( | 128 bool CrashReporterClient::EnableBreakpadForProcess( |
| 125 const std::string& process_type) { | 129 const std::string& process_type) { |
| 126 return false; | 130 return false; |
| 127 } | 131 } |
| 128 | 132 |
| 129 } // namespace crash_reporter | 133 } // namespace crash_reporter |
| OLD | NEW |