| 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/content/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 { |
| 11 | 11 |
| 12 namespace { | 12 namespace { |
| 13 | 13 |
| 14 CrashReporterClient* g_client = NULL; | 14 CrashReporterClient* g_client = NULL; |
| 15 | 15 |
| (...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 139 #endif | 139 #endif |
| 140 } | 140 } |
| 141 #endif | 141 #endif |
| 142 | 142 |
| 143 bool CrashReporterClient::EnableBreakpadForProcess( | 143 bool CrashReporterClient::EnableBreakpadForProcess( |
| 144 const std::string& process_type) { | 144 const std::string& process_type) { |
| 145 return false; | 145 return false; |
| 146 } | 146 } |
| 147 | 147 |
| 148 } // namespace crash_reporter | 148 } // namespace crash_reporter |
| OLD | NEW |