diff options
Diffstat (limited to 'chrome/app/breakpad_mac.mm')
-rw-r--r-- | chrome/app/breakpad_mac.mm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/chrome/app/breakpad_mac.mm b/chrome/app/breakpad_mac.mm index 4f00932..3617b6a 100644 --- a/chrome/app/breakpad_mac.mm +++ b/chrome/app/breakpad_mac.mm @@ -14,6 +14,7 @@ #include "base/file_path.h" #include "base/file_util.h" #import "base/logging.h" +#include "base/mac/bundle_locations.h" #include "base/mac/mac_util.h" #include "base/mac/scoped_cftyperef.h" #import "base/mac/scoped_nsautorelease_pool.h" @@ -113,7 +114,7 @@ void InitCrashReporter() { // Helper processes may not have access to the disk or to the same data as // the browser process, so the browser passes the decision to them on the // command line. - NSBundle* main_bundle = base::mac::MainAppBundle(); + NSBundle* main_bundle = base::mac::FrameworkBundle(); bool is_browser = !base::mac::IsBackgroundOnlyProcess(); bool enable_breakpad = false; CommandLine* command_line = CommandLine::ForCurrentProcess(); |