From bed09839d5fce3bb35fd17445ae413799a90c1df Mon Sep 17 00:00:00 2001 From: Cheng Zhao Date: Fri, 21 Nov 2014 16:39:16 +0800 Subject: [PATCH] Remove debugging print, closes #841 --- atom/app/atom_main_delegate.cc | 4 ---- atom/app/atom_main_delegate.h | 1 - 2 files changed, 5 deletions(-) diff --git a/atom/app/atom_main_delegate.cc b/atom/app/atom_main_delegate.cc index a2c344b65fbe..1030bb85c4ab 100644 --- a/atom/app/atom_main_delegate.cc +++ b/atom/app/atom_main_delegate.cc @@ -89,10 +89,6 @@ void AtomMainDelegate::PreSandboxStartup() { command_line->AppendSwitch("atom-shell-switches-end"); } -void AtomMainDelegate::ProcessExiting(const std::string& process_type) { - LOG(ERROR) << "ProcessExiting: " << process_type; -} - content::ContentBrowserClient* AtomMainDelegate::CreateContentBrowserClient() { browser_client_.reset(new AtomBrowserClient); return browser_client_.get(); diff --git a/atom/app/atom_main_delegate.h b/atom/app/atom_main_delegate.h index 6fd0b4eaa909..9988153766eb 100644 --- a/atom/app/atom_main_delegate.h +++ b/atom/app/atom_main_delegate.h @@ -19,7 +19,6 @@ class AtomMainDelegate : public brightray::MainDelegate { // content::ContentMainDelegate: virtual bool BasicStartupComplete(int* exit_code) OVERRIDE; virtual void PreSandboxStartup() OVERRIDE; - virtual void ProcessExiting(const std::string& process_type) OVERRIDE; virtual content::ContentBrowserClient* CreateContentBrowserClient() OVERRIDE; virtual content::ContentRendererClient* CreateContentRendererClient() OVERRIDE;