Fix compilation error on OS X.

This commit is contained in:
Haojian Wu 2015-05-04 20:58:48 +08:00
parent ff87592722
commit 298d3a0144
3 changed files with 7 additions and 11 deletions

View file

@ -27,10 +27,6 @@ bool Send(IPC::Message* message) {
return content::UtilityThread::Get()->Send(message);
}
void ReleaseProcessIfNeeded() {
content::UtilityThread::Get()->ReleaseProcessIfNeeded();
}
} // namespace
namespace atom {
@ -40,7 +36,9 @@ int64_t AtomContentUtilityClient::max_ipc_message_size_ =
AtomContentUtilityClient::AtomContentUtilityClient()
: filter_messages_(false) {
#if defined(OS_WIN)
handlers_.push_back(new PrintingHandler());
#endif
}
AtomContentUtilityClient::~AtomContentUtilityClient() {