summaryrefslogtreecommitdiff
path: root/www/chromium/files/patch-chrome__app__chrome_main_delegate.cc
diff options
context:
space:
mode:
authorRene Ladan <rene@FreeBSD.org>2014-02-25 18:58:03 +0000
committerRene Ladan <rene@FreeBSD.org>2014-02-25 18:58:03 +0000
commitc055a2984b71a01a0e95342f0d30bf1c97aa5a12 (patch)
tree09c1b67fae5129dc84680b14e666da92ba8dc175 /www/chromium/files/patch-chrome__app__chrome_main_delegate.cc
parentFix crashes in dbmail-pop3d as per (diff)
www/chromium: Update to 33.0.1750.117 [0]
Fix the crash when closing the history/settings tab [1] Submitted by: John Carr <jfc@mit.edu> via freebsd-chromium [1] Security: http://vuxml.org/freebsd/9dd47fa3-9d53-11e3-b20f-00262d5ed8ee.html [0]
Diffstat (limited to 'www/chromium/files/patch-chrome__app__chrome_main_delegate.cc')
-rw-r--r--www/chromium/files/patch-chrome__app__chrome_main_delegate.cc28
1 files changed, 14 insertions, 14 deletions
diff --git a/www/chromium/files/patch-chrome__app__chrome_main_delegate.cc b/www/chromium/files/patch-chrome__app__chrome_main_delegate.cc
index 8c6e2f545b68..f93d59ccd4b8 100644
--- a/www/chromium/files/patch-chrome__app__chrome_main_delegate.cc
+++ b/www/chromium/files/patch-chrome__app__chrome_main_delegate.cc
@@ -1,5 +1,5 @@
---- chrome/app/chrome_main_delegate.cc.orig 2014-01-07 21:01:39.000000000 +0100
-+++ chrome/app/chrome_main_delegate.cc 2014-01-13 16:53:27.000000000 +0100
+--- chrome/app/chrome_main_delegate.cc.orig 2014-02-20 21:27:29.000000000 +0100
++++ chrome/app/chrome_main_delegate.cc 2014-02-25 01:39:55.000000000 +0100
@@ -97,7 +97,7 @@
#include "ui/base/x/x11_util.h"
#endif
@@ -54,7 +54,7 @@
breakpad::SetBreakpadClient(g_chrome_breakpad_client.Pointer());
#endif
-@@ -701,7 +701,7 @@
+@@ -703,7 +703,7 @@
#endif
}
@@ -63,8 +63,8 @@
// Zygote needs to call InitCrashReporter() in RunZygote().
if (process_type != switches::kZygoteProcess) {
#if defined(OS_ANDROID)
-@@ -713,7 +713,7 @@
- breakpad::InitCrashReporter();
+@@ -715,7 +715,7 @@
+ breakpad::InitCrashReporter(process_type);
#endif // defined(OS_ANDROID)
}
-#endif // defined(OS_POSIX) && !defined(OS_MACOSX)
@@ -72,12 +72,12 @@
// After all the platform Breakpads have been initialized, store the command
// line for crash reporting.
-@@ -814,7 +814,7 @@
- SetUpProfilingShutdownHandler();
- }
-
--#if defined(OS_POSIX) && !defined(OS_MACOSX)
-+#if defined(OS_POSIX) && !defined(OS_MACOSX) && !defined(OS_BSD)
- // Needs to be called after we have chrome::DIR_USER_DATA. BrowserMain sets
- // this up for the browser process in a different manner.
- breakpad::InitCrashReporter();
+@@ -800,7 +800,7 @@
+ return process_type == switches::kNaClLoaderProcess ||
+ process_type == switches::kRelauncherProcess;
+ }
+-#elif defined(OS_POSIX) && !defined(OS_ANDROID)
++#elif defined(OS_POSIX) && !defined(OS_ANDROID) && !defined(OS_BSD)
+ content::ZygoteForkDelegate* ChromeMainDelegate::ZygoteStarting() {
+ #if defined(DISABLE_NACL)
+ return NULL;