Browse Source

Remove debugging print, closes #841

Cheng Zhao 10 years ago
parent
commit
bed09839d5
2 changed files with 0 additions and 5 deletions
  1. 0 4
      atom/app/atom_main_delegate.cc
  2. 0 1
      atom/app/atom_main_delegate.h

+ 0 - 4
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();

+ 0 - 1
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;