diff options
Diffstat (limited to 'chrome/app/breakpad_mac.mm')
-rw-r--r-- | chrome/app/breakpad_mac.mm | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/chrome/app/breakpad_mac.mm b/chrome/app/breakpad_mac.mm index 6d28d47..87c8fe3 100644 --- a/chrome/app/breakpad_mac.mm +++ b/chrome/app/breakpad_mac.mm @@ -15,10 +15,10 @@ #import "breakpad/src/client/mac/Framework/Breakpad.h" #include "chrome/installer/util/google_update_settings.h" -#if !defined(GOOGLE_CHROME_BUILD) - extern "C" { +#if !defined(GOOGLE_CHROME_BUILD) + // 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. @@ -40,8 +40,6 @@ void BreakpadRemoveUploadParameter(BreakpadRef ref, NSString *key) { NOTREACHED(); } -} - #endif // !defined(GOOGLE_CHROME_BUILD) namespace { @@ -151,3 +149,6 @@ void ClearCrashKeyValue(NSString* key) { BreakpadRemoveUploadParameter(gBreakpadRef, key); } + +} + |