// Copyright (c) 2015 GitHub, Inc. // Use of this source code is governed by the MIT license that can be // found in the LICENSE file. #ifndef SHELL_UTILITY_ATOM_CONTENT_UTILITY_CLIENT_H_ #define SHELL_UTILITY_ATOM_CONTENT_UTILITY_CLIENT_H_ #include #include #include #include "base/compiler_specific.h" #include "content/public/utility/content_utility_client.h" #include "printing/buildflags/buildflags.h" #if BUILDFLAG(ENABLE_PRINTING) && defined(OS_WIN) #include "chrome/utility/printing_handler.h" #endif namespace electron { class AtomContentUtilityClient : public content::ContentUtilityClient { public: AtomContentUtilityClient(); ~AtomContentUtilityClient() override; void UtilityThreadStarted() override; bool OnMessageReceived(const IPC::Message& message) override; mojo::ServiceFactory* GetMainThreadServiceFactory() override; mojo::ServiceFactory* GetIOThreadServiceFactory() override; private: #if BUILDFLAG(ENABLE_PRINTING) && defined(OS_WIN) std::unique_ptr printing_handler_; #endif bool elevated_; DISALLOW_COPY_AND_ASSIGN(AtomContentUtilityClient); }; } // namespace electron #endif // SHELL_UTILITY_ATOM_CONTENT_UTILITY_CLIENT_H_