// Copyright (c) 2013 GitHub, Inc. // Use of this source code is governed by the MIT license that can be // found in the LICENSE file. #ifndef SHELL_APP_ELECTRON_MAIN_DELEGATE_H_ #define SHELL_APP_ELECTRON_MAIN_DELEGATE_H_ #include #include #include "content/public/app/content_main_delegate.h" #include "content/public/common/content_client.h" namespace tracing { class TracingSamplerProfiler; } namespace electron { std::string LoadResourceBundle(const std::string& locale); class ElectronMainDelegate : public content::ContentMainDelegate { public: static const char* const kNonWildcardDomainNonPortSchemes[]; static const size_t kNonWildcardDomainNonPortSchemesSize; ElectronMainDelegate(); ~ElectronMainDelegate() override; protected: // content::ContentMainDelegate: bool BasicStartupComplete(int* exit_code) override; void PreSandboxStartup() override; void SandboxInitialized(const std::string& process_type) override; void PreBrowserMain() override; content::ContentBrowserClient* CreateContentBrowserClient() override; content::ContentGpuClient* CreateContentGpuClient() override; content::ContentRendererClient* CreateContentRendererClient() override; content::ContentUtilityClient* CreateContentUtilityClient() override; int RunProcess( const std::string& process_type, const content::MainFunctionParams& main_function_params) override; bool ShouldCreateFeatureList() override; bool ShouldLockSchemeRegistry() override; #if defined(OS_LINUX) void ZygoteForked() override; #endif private: #if defined(OS_MAC) void OverrideChildProcessPath(); void OverrideFrameworkBundlePath(); void SetUpBundleOverrides(); #endif std::unique_ptr browser_client_; std::unique_ptr content_client_; std::unique_ptr gpu_client_; std::unique_ptr renderer_client_; std::unique_ptr utility_client_; std::unique_ptr tracing_sampler_profiler_; DISALLOW_COPY_AND_ASSIGN(ElectronMainDelegate); }; } // namespace electron #endif // SHELL_APP_ELECTRON_MAIN_DELEGATE_H_