mirror of
https://git.freebsd.org/ports.git
synced 2025-06-12 08:10:31 -04:00
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]
11 lines
577 B
C++
11 lines
577 B
C++
--- chrome/app/chrome_main_delegate.h.orig 2014-02-20 21:27:29.000000000 +0100
|
|
+++ chrome/app/chrome_main_delegate.h 2014-02-25 01:45:34.000000000 +0100
|
|
@@ -31,7 +31,7 @@
|
|
virtual bool ShouldSendMachPort(const std::string& process_type) OVERRIDE;
|
|
virtual bool DelaySandboxInitialization(
|
|
const std::string& process_type) OVERRIDE;
|
|
-#elif defined(OS_POSIX) && !defined(OS_ANDROID)
|
|
+#elif defined(OS_POSIX) && !defined(OS_ANDROID) && !defined(OS_BSD)
|
|
virtual content::ZygoteForkDelegate* ZygoteStarting() OVERRIDE;
|
|
virtual void ZygoteForked() OVERRIDE;
|
|
#endif
|