From f1652c9eb3f30ae80757b87b8978b570efa9810e Mon Sep 17 00:00:00 2001 From: "viettrungluu@chromium.org" Date: Thu, 14 Aug 2014 12:13:23 +0000 Subject: Mojo: Add the ability to notify a Mojo Channel that it's going to be destroyed soon. * The actual destruction will typically happen on a different thread. * We'd like to suppress warnings about the OS "pipe" being broken (which it often will, because we kill processes rather than shut them down). * We'd like to know if we're still sending stuff on the channel even though it's about to go away. R=yzshen@chromium.org, sky@chromium.org Review URL: https://codereview.chromium.org/472603002 Cr-Commit-Position: refs/heads/master@{#289531} git-svn-id: svn://svn.chromium.org/chrome/trunk/src@289531 0039d316-1c4b-4281-b951-d872f2087c98 --- content/browser/mojo/mojo_application_host.cc | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'content/browser/mojo/mojo_application_host.cc') diff --git a/content/browser/mojo/mojo_application_host.cc b/content/browser/mojo/mojo_application_host.cc index 2491252..3af7974 100644 --- a/content/browser/mojo/mojo_application_host.cc +++ b/content/browser/mojo/mojo_application_host.cc @@ -59,4 +59,8 @@ bool MojoApplicationHost::Activate(IPC::Sender* sender, return did_activate_; } +void MojoApplicationHost::WillDestroySoon() { + channel_init_.WillDestroySoon(); +} + } // namespace content -- cgit v1.1