Bump v0.19.3

This commit is contained in:
Cheng Zhao 2014-11-20 11:09:05 +08:00
parent 879de42372
commit 8a73d91ea1
6 changed files with 12 additions and 7 deletions

View file

@ -89,6 +89,10 @@ 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();

View file

@ -19,6 +19,7 @@ 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;