// Copyright (c) 2011 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. // When each service is created, we set a flag indicating this. At this point, // the service initialization could fail or succeed. This allows us to remember // if we tried to create a service, and not try creating it over and over if // the creation failed. #ifndef CHROME_BROWSER_BROWSER_PROCESS_IMPL_H_ #define CHROME_BROWSER_BROWSER_PROCESS_IMPL_H_ #pragma once #include #include "base/basictypes.h" #include "base/message_loop.h" #include "base/scoped_ptr.h" #include "base/threading/non_thread_safe.h" #include "base/timer.h" #include "chrome/browser/browser_process.h" #include "chrome/browser/download/download_status_updater.h" #include "chrome/browser/prefs/pref_change_registrar.h" #include "chrome/browser/prefs/pref_member.h" #include "chrome/browser/tab_contents/thumbnail_generator.h" #include "content/common/notification_observer.h" #include "content/common/notification_registrar.h" #include "ipc/ipc_message.h" class ChromeNetLog; class CommandLine; class DevToolsHttpProtocolHandler; class DevToolsProtocolHandler; class FilePath; class NotificationService; class PluginDataRemover; class TabCloseableStateWatcher; // Real implementation of BrowserProcess that creates and returns the services. class BrowserProcessImpl : public BrowserProcess, public base::NonThreadSafe, public NotificationObserver { public: explicit BrowserProcessImpl(const CommandLine& command_line); virtual ~BrowserProcessImpl(); virtual void EndSession(); // BrowserProcess methods virtual ResourceDispatcherHost* resource_dispatcher_host(); virtual MetricsService* metrics_service(); virtual IOThread* io_thread(); virtual base::Thread* file_thread(); virtual base::Thread* db_thread(); virtual base::Thread* process_launcher_thread(); virtual base::Thread* cache_thread(); #if defined(USE_X11) virtual base::Thread* background_x11_thread(); #endif virtual WatchDogThread* watchdog_thread(); virtual ProfileManager* profile_manager(); virtual PrefService* local_state(); virtual DevToolsManager* devtools_manager(); virtual SidebarManager* sidebar_manager(); virtual ui::Clipboard* clipboard(); virtual ExtensionEventRouterForwarder* extension_event_router_forwarder(); virtual NotificationUIManager* notification_ui_manager(); virtual policy::BrowserPolicyConnector* browser_policy_connector(); virtual IconManager* icon_manager(); virtual ThumbnailGenerator* GetThumbnailGenerator(); virtual AutomationProviderList* InitAutomationProviderList(); virtual void InitDevToolsHttpProtocolHandler( const std::string& ip, int port, const std::string& frontend_url); virtual void InitDevToolsLegacyProtocolHandler(int port); virtual unsigned int AddRefModule(); virtual unsigned int ReleaseModule(); virtual bool IsShuttingDown(); virtual printing::PrintJobManager* print_job_manager(); virtual printing::PrintPreviewTabController* print_preview_tab_controller(); virtual GoogleURLTracker* google_url_tracker(); virtual IntranetRedirectDetector* intranet_redirect_detector(); virtual const std::string& GetApplicationLocale(); virtual void SetApplicationLocale(const std::string& locale); virtual DownloadStatusUpdater* download_status_updater(); virtual base::WaitableEvent* shutdown_event(); virtual TabCloseableStateWatcher* tab_closeable_state_watcher(); virtual safe_browsing::ClientSideDetectionService* safe_browsing_detection_service(); virtual bool plugin_finder_disabled() const; virtual void CheckForInspectorFiles(); // NotificationObserver methods virtual void Observe(NotificationType type, const NotificationSource& source, const NotificationDetails& details); #if (defined(OS_WIN) || defined(OS_LINUX)) && !defined(OS_CHROMEOS) virtual void StartAutoupdateTimer(); #endif virtual bool have_inspector_files() const; virtual ChromeNetLog* net_log(); #if defined(IPC_MESSAGE_LOG_ENABLED) virtual void SetIPCLoggingEnabled(bool enable); #endif private: void ClearLocalState(const FilePath& profile_path); bool ShouldClearLocalState(FilePath* profile_path); void CreateResourceDispatcherHost(); void CreatePrefService(); void CreateMetricsService(); void CreateIOThread(); static void CleanupOnIOThread(); void WaitForPluginDataRemoverToFinish(); void CreateFileThread(); void CreateDBThread(); void CreateProcessLauncherThread(); void CreateCacheThread(); void CreateWatchdogThread(); void CreateTemplateURLModel(); void CreateProfileManager(); void CreateWebDataService(); void CreateLocalState(); void CreateViewedPageTracker(); void CreateIconManager(); void CreateDevToolsManager(); void CreateSidebarManager(); void CreateGoogleURLTracker(); void CreateIntranetRedirectDetector(); void CreateNotificationUIManager(); void CreateStatusTrayManager(); void CreateTabCloseableStateWatcher(); void CreatePrintPreviewTabController(); void CreateSafeBrowsingDetectionService(); bool IsSafeBrowsingDetectionServiceEnabled(); #if defined(IPC_MESSAGE_LOG_ENABLED) void SetIPCLoggingEnabledForChildProcesses(bool enabled); #endif bool created_resource_dispatcher_host_; scoped_ptr resource_dispatcher_host_; bool created_metrics_service_; scoped_ptr metrics_service_; bool created_io_thread_; scoped_ptr io_thread_; #if defined(USE_X11) // This shares a created flag with the IO thread. scoped_ptr background_x11_thread_; #endif bool created_file_thread_; scoped_ptr file_thread_; bool created_db_thread_; scoped_ptr db_thread_; bool created_process_launcher_thread_; scoped_ptr process_launcher_thread_; bool created_cache_thread_; scoped_ptr cache_thread_; bool created_watchdog_thread_; scoped_ptr watchdog_thread_; bool created_profile_manager_; scoped_ptr profile_manager_; bool created_local_state_; scoped_ptr local_state_; bool created_icon_manager_; scoped_ptr icon_manager_; scoped_refptr extension_event_router_forwarder_; scoped_refptr devtools_http_handler_; scoped_refptr devtools_legacy_handler_; bool created_devtools_manager_; scoped_refptr devtools_manager_; bool created_sidebar_manager_; scoped_refptr sidebar_manager_; bool created_browser_policy_connector_; scoped_ptr browser_policy_connector_; scoped_refptr print_preview_tab_controller_; scoped_ptr clipboard_; // Manager for desktop notification UI. bool created_notification_ui_manager_; scoped_ptr notification_ui_manager_; scoped_ptr automation_provider_list_; scoped_ptr google_url_tracker_; scoped_ptr intranet_redirect_detector_; scoped_ptr main_notification_service_; scoped_ptr tab_closeable_state_watcher_; bool created_safe_browsing_detection_service_; scoped_ptr safe_browsing_detection_service_; unsigned int module_ref_count_; bool did_start_; // Ensures that all the print jobs are finished before closing the browser. scoped_ptr print_job_manager_; std::string locale_; bool checked_for_new_frames_; bool using_new_frames_; // This service just sits around and makes thumbnails for tabs. It does // nothing in the constructor so we don't have to worry about lazy init. ThumbnailGenerator thumbnail_generator_; // Download status updates (like a changing application icon on dock/taskbar) // are global per-application. DownloadStatusUpdater does no work in the ctor // so we don't have to worry about lazy initialization. DownloadStatusUpdater download_status_updater_; // An event that notifies when we are shutting-down. scoped_ptr shutdown_event_; // Runs on the file thread and stats the inspector's directory, filling in // have_inspector_files_ with the result. void DoInspectorFilesCheck(); // Our best estimate about the existence of the inspector directory. bool have_inspector_files_; // Ensures that the observers of plugin/print disable/enable state // notifications are properly added and removed. PrefChangeRegistrar pref_change_registrar_; // Lives here so can safely log events on shutdown. scoped_ptr net_log_; NotificationRegistrar notification_registrar_; scoped_refptr plugin_data_remover_; // Monitors the state of the 'DisablePluginFinder' policy. BooleanPrefMember plugin_finder_disabled_pref_; #if (defined(OS_WIN) || defined(OS_LINUX)) && !defined(OS_CHROMEOS) base::RepeatingTimer autoupdate_timer_; // Gets called by autoupdate timer to see if browser needs restart and can be // restarted, and if that's the case, restarts the browser. void OnAutoupdateTimer(); bool CanAutorestartForUpdate() const; void RestartPersistentInstance(); #endif // defined(OS_WIN) || defined(OS_LINUX) DISALLOW_COPY_AND_ASSIGN(BrowserProcessImpl); }; #endif // CHROME_BROWSER_BROWSER_PROCESS_IMPL_H_