OLD | NEW |
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 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 #import "chrome/app/breakpad_mac.h" | 5 #import "chrome/app/breakpad_mac.h" |
6 | 6 |
7 // Stubbed out versions of breakpad integration functions so we can compile | 7 // Stubbed out versions of breakpad integration functions so we can compile |
8 // without linking in Breakpad on non-official builds. | 8 // unit tests without linking in Breakpad. |
9 | 9 |
10 bool IsCrashReporterEnabled() { | 10 bool IsCrashReporterEnabled() { |
11 return false; | 11 return false; |
12 } | 12 } |
13 | 13 |
14 void InitCrashProcessInfo() { | 14 void InitCrashProcessInfo() { |
15 } | 15 } |
16 | 16 |
17 void DestructCrashReporter() { | 17 void DestructCrashReporter() { |
18 } | 18 } |
19 | 19 |
20 void InitCrashReporter() { | 20 void InitCrashReporter() { |
21 } | 21 } |
22 | 22 |
23 void SetCrashKeyValue(NSString* key, NSString* value) { | 23 void SetCrashKeyValue(NSString* key, NSString* value) { |
24 } | 24 } |
25 | 25 |
26 void ClearCrashKeyValue(NSString* key) { | 26 void ClearCrashKeyValue(NSString* key) { |
27 } | 27 } |
OLD | NEW |