| 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/breakpad/breakpad_client.h" | 5 #include "components/breakpad/breakpad_client.h" |
| 6 | 6 |
| 7 #include "base/logging.h" | 7 #include "base/logging.h" |
| 8 | 8 |
| 9 namespace breakpad { | 9 namespace breakpad { |
| 10 | 10 |
| (...skipping 13 matching lines...) Expand all Loading... |
| 24 } | 24 } |
| 25 | 25 |
| 26 BreakpadClient::BreakpadClient() {} | 26 BreakpadClient::BreakpadClient() {} |
| 27 BreakpadClient::~BreakpadClient() {} | 27 BreakpadClient::~BreakpadClient() {} |
| 28 | 28 |
| 29 #if defined(OS_WIN) | 29 #if defined(OS_WIN) |
| 30 bool BreakpadClient::GetAlternativeCrashDumpLocation( | 30 bool BreakpadClient::GetAlternativeCrashDumpLocation( |
| 31 base::FilePath* crash_dir) { | 31 base::FilePath* crash_dir) { |
| 32 return false; | 32 return false; |
| 33 } | 33 } |
| 34 |
| 35 void BreakpadClient::GetProductNameAndVersion(const base::FilePath& exe_path, |
| 36 base::string16* product_name, |
| 37 base::string16* version, |
| 38 base::string16* special_build) { |
| 39 } |
| 34 #endif | 40 #endif |
| 35 | 41 |
| 36 bool BreakpadClient::GetCrashDumpLocation(base::FilePath* crash_dir) { | 42 bool BreakpadClient::GetCrashDumpLocation(base::FilePath* crash_dir) { |
| 37 return false; | 43 return false; |
| 38 } | 44 } |
| 39 | 45 |
| 40 #if defined(OS_POSIX) | 46 #if defined(OS_POSIX) |
| 41 void BreakpadClient::SetDumpWithoutCrashingFunction(void (*function)()) { | 47 void BreakpadClient::SetDumpWithoutCrashingFunction(void (*function)()) { |
| 42 } | 48 } |
| 43 #endif | 49 #endif |
| 44 | 50 |
| 45 } // namespace breakpad | 51 } // namespace breakpad |
| OLD | NEW |