Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(113)

Unified Diff: content/common/child_thread.cc

Issue 10836115: Try to get more information to track down 140054, specifically to see whether OnChannelError is bei… (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 8 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/common/child_thread.cc
===================================================================
--- content/common/child_thread.cc (revision 150055)
+++ content/common/child_thread.cc (working copy)
@@ -59,6 +59,7 @@
// We want to kill this process after giving it 30 seconds to run the exit
// handlers. SIGALRM has a default disposition of terminating the
// application.
+ LOG(INFO) << "SuicideOnChannelErrorFilter::OnChannelError";
if (CommandLine::ForCurrentProcess()->HasSwitch(switches::kChildCleanExit))
alarm(30);
else
@@ -136,6 +137,7 @@
}
void ChildThread::OnChannelError() {
+ LOG(INFO) << "ChildThread::OnChannelError";
set_on_channel_error_called(true);
MessageLoop::current()->Quit();
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698