summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorerikchen@chromium.org <erikchen@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-07-29 07:53:33 +0000
committererikchen@chromium.org <erikchen@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-07-29 07:53:33 +0000
commit6ddc109791d07322f75818b52229838c1129fa7b (patch)
tree47e349459c0d6f1f0f1c6bce9ff8bf5ecb748d8c
parentfa90215fbbcc723b0860a9502ea5ae994711201d (diff)
downloadchromium_src-6ddc109791d07322f75818b52229838c1129fa7b.zip
chromium_src-6ddc109791d07322f75818b52229838c1129fa7b.tar.gz
chromium_src-6ddc109791d07322f75818b52229838c1129fa7b.tar.bz2
mac: Fix a bug where signal handlers were not being installed.
The bug was introduced by me in https://codereview.chromium.org/393753002/. Overrode a method and didn't call the super implementation. BUG=NONE Review URL: https://codereview.chromium.org/428783002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@286114 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r--chrome/browser/chrome_browser_main_mac.mm1
1 files changed, 1 insertions, 0 deletions
diff --git a/chrome/browser/chrome_browser_main_mac.mm b/chrome/browser/chrome_browser_main_mac.mm
index fa0cc60..8c46f78 100644
--- a/chrome/browser/chrome_browser_main_mac.mm
+++ b/chrome/browser/chrome_browser_main_mac.mm
@@ -263,6 +263,7 @@ void ChromeBrowserMainPartsMac::PreMainMessageLoopStart() {
void ChromeBrowserMainPartsMac::PostMainMessageLoopStart() {
MacStartupProfiler::GetInstance()->Profile(
MacStartupProfiler::POST_MAIN_MESSAGE_LOOP_START);
+ ChromeBrowserMainPartsPosix::PostMainMessageLoopStart();
}
void ChromeBrowserMainPartsMac::PreProfileInit() {