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

Side by Side Diff: components/breakpad/breakpad_client.cc

Issue 19556005: Remove dependency from breakpad files on chrome switches. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 7 years, 5 months 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 | Annotate | Revision Log
« no previous file with comments | « components/breakpad/breakpad_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/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
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
OLDNEW
« no previous file with comments | « components/breakpad/breakpad_client.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698