--- a/dom/plugins/PluginModuleChild.cpp
+++ b/dom/plugins/PluginModuleChild.cpp
@@ -260,26 +260,16 @@ PluginModuleChild::InitGraphics()
return true;
}
bool
PluginModuleChild::AnswerNP_Shutdown(NPError *rv)
{
AssertPluginThread();
-
-
-
-#ifdef OS_LINUX
- printf("TEST-UNEXPECTED-FAIL | plugin process %d | got NP_Shutdown() %d\n", getpid());
-#endif
-
-
-
-
// the PluginModuleParent shuts down this process after this RPC
// call pops off its stack
*rv = mShutdownFunc ? mShutdownFunc() : NPERR_NO_ERROR;
// weakly guard against re-entry after NP_Shutdown
memset(&mFunctions, 0, sizeof(mFunctions));
--- a/ipc/chromium/src/chrome/common/process_watcher_posix_sigchld.cc
+++ b/ipc/chromium/src/chrome/common/process_watcher_posix_sigchld.cc
@@ -110,34 +110,17 @@ public:
StopCatching();
}
}
protected:
void WaitForChildExit()
{
DCHECK(process_);
-
-
-
- printf("TEST-UNEXPECTED-FAIL | process %d busy-waiting on | child process %d\n", getpid(), process_);
-
-
-
-
HANDLE_EINTR(waitpid(process_, NULL, 0));
-
-
-
-
- printf("TEST-UNEXPECTED-FAIL | process %d done busy-waiting on | child process %d\n", getpid(), process_);
-
-
-
-
}
pid_t process_;
private:
DISALLOW_EVIL_CONSTRUCTORS(ChildReaper);
};