Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(654)

Side by Side Diff: components/crash/app/crash_reporter_client.cc

Issue 692093005: Crash component: adds API for clients to handle the crash minidump. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: context warning doc Created 6 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « components/crash/app/crash_reporter_client.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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
OLDNEW
« no previous file with comments | « components/crash/app/crash_reporter_client.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698