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

Side by Side Diff: chrome/app/breakpad_mac_stubs.mm

Issue 113114: OS X Breakpad cleanup. (Closed)
Patch Set: Created 11 years, 7 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
« breakpad/breakpad.gyp ('K') | « breakpad/breakpad.gyp ('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 (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 }
OLDNEW
« breakpad/breakpad.gyp ('K') | « breakpad/breakpad.gyp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698