Do no load PDF library from DLL
We already have them compiled in.
This commit is contained in:
parent
b9ad09db91
commit
ae0d007c5e
5 changed files with 16 additions and 129 deletions
|
@ -37,7 +37,7 @@ int64_t AtomContentUtilityClient::max_ipc_message_size_ =
|
|||
AtomContentUtilityClient::AtomContentUtilityClient()
|
||||
: filter_messages_(false) {
|
||||
#if defined(OS_WIN)
|
||||
handlers_.push_back(new PrintingHandlerWin());
|
||||
handlers_.push_back(new printing::PrintingHandlerWin());
|
||||
#endif
|
||||
}
|
||||
|
||||
|
@ -71,11 +71,4 @@ void AtomContentUtilityClient::OnStartupPing() {
|
|||
// Don't release the process, we assume further messages are on the way.
|
||||
}
|
||||
|
||||
// static
|
||||
void AtomContentUtilityClient::PreSandboxStartup() {
|
||||
#if defined(OS_WIN)
|
||||
PrintingHandlerWin::PreSandboxStartup();
|
||||
#endif
|
||||
}
|
||||
|
||||
} // namespace atom
|
||||
|
|
|
@ -31,8 +31,6 @@ class AtomContentUtilityClient : public content::ContentUtilityClient {
|
|||
void UtilityThreadStarted() override;
|
||||
bool OnMessageReceived(const IPC::Message& message) override;
|
||||
|
||||
static void PreSandboxStartup();
|
||||
|
||||
static void set_max_ipc_message_size_for_test(int64_t max_message_size) {
|
||||
max_ipc_message_size_ = max_message_size;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue