From 6c2381d5ec28a86536c07dfa4a398a2b6bc1a58c Mon Sep 17 00:00:00 2001 From: "jam@chromium.org" Date: Wed, 19 Oct 2011 02:52:53 +0000 Subject: Move NotificationObserver, NotificationSource, and NotificationDetails to content/public/browser. This patch got way bigger than I wanted, but once I moved NotificationDetails, I figured I might as well mvoe the others since they're in the same files. In hindsight, I should have converted a subset of files at a time by leaving a using statement in the header. BUG=98716 TBR=joi git-svn-id: svn://svn.chromium.org/chrome/trunk/src@106196 0039d316-1c4b-4281-b951-d872f2087c98 --- content/browser/renderer_host/render_process_host.cc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'content/browser/renderer_host/render_process_host.cc') diff --git a/content/browser/renderer_host/render_process_host.cc b/content/browser/renderer_host/render_process_host.cc index bf4d98a..d783884 100644 --- a/content/browser/renderer_host/render_process_host.cc +++ b/content/browser/renderer_host/render_process_host.cc @@ -151,7 +151,8 @@ void RenderProcessHost::Cleanup() { if (listeners_.IsEmpty()) { NotificationService::current()->Notify( content::NOTIFICATION_RENDERER_PROCESS_TERMINATED, - Source(this), NotificationService::NoDetails()); + content::Source(this), + NotificationService::NoDetails()); MessageLoop::current()->DeleteSoon(FROM_HERE, this); deleting_soon_ = true; // It's important not to wait for the DeleteTask to delete the channel -- cgit v1.1