Commit 62949451 authored by jrg@chromium.org's avatar jrg@chromium.org

Try to fix broken tree


git-svn-id: svn://svn.chromium.org/chrome/trunk/src@20197 0039d316-1c4b-4281-b951-d872f2087c98
parent 199f2304
...@@ -5,6 +5,8 @@ ...@@ -5,6 +5,8 @@
#ifndef CHROME_APP_BREAKPAD_MAC_H_ #ifndef CHROME_APP_BREAKPAD_MAC_H_
#define CHROME_APP_BREAKPAD_MAC_H_ #define CHROME_APP_BREAKPAD_MAC_H_
extern "C" {
// This header defines the Chrome entry points for Breakpad integration. // This header defines the Chrome entry points for Breakpad integration.
// Initializes Breakpad. // Initializes Breakpad.
...@@ -34,4 +36,6 @@ void ClearCrashKeyValue(NSString* key); ...@@ -34,4 +36,6 @@ void ClearCrashKeyValue(NSString* key);
#endif // __OBJC__ #endif // __OBJC__
}
#endif // CHROME_APP_BREAKPAD_MAC_H_ #endif // CHROME_APP_BREAKPAD_MAC_H_
...@@ -15,10 +15,10 @@ ...@@ -15,10 +15,10 @@
#import "breakpad/src/client/mac/Framework/Breakpad.h" #import "breakpad/src/client/mac/Framework/Breakpad.h"
#include "chrome/installer/util/google_update_settings.h" #include "chrome/installer/util/google_update_settings.h"
#if !defined(GOOGLE_CHROME_BUILD)
extern "C" { extern "C" {
#if !defined(GOOGLE_CHROME_BUILD)
// If we aren't compiling as a branded build, then add dummy versions of the // If we aren't compiling as a branded build, then add dummy versions of the
// Breakpad functions so we don't have to link against Breakpad. // Breakpad functions so we don't have to link against Breakpad.
...@@ -40,8 +40,6 @@ void BreakpadRemoveUploadParameter(BreakpadRef ref, NSString *key) { ...@@ -40,8 +40,6 @@ void BreakpadRemoveUploadParameter(BreakpadRef ref, NSString *key) {
NOTREACHED(); NOTREACHED();
} }
}
#endif // !defined(GOOGLE_CHROME_BUILD) #endif // !defined(GOOGLE_CHROME_BUILD)
namespace { namespace {
...@@ -151,3 +149,6 @@ void ClearCrashKeyValue(NSString* key) { ...@@ -151,3 +149,6 @@ void ClearCrashKeyValue(NSString* key) {
BreakpadRemoveUploadParameter(gBreakpadRef, key); BreakpadRemoveUploadParameter(gBreakpadRef, key);
} }
}
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment