blob: 420a67c29cfce08457c1d4886590098eb0654902 [file] [log] [blame]
[email protected]f2a893c2011-01-05 09:38:071// Copyright (c) 2011 The Chromium Authors. All rights reserved.
license.botbf09a502008-08-24 00:55:552// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
initial.commit09911bf2008-07-26 23:55:294
5#include "chrome/browser/browser_process_impl.h"
6
[email protected]3cdacd42010-04-30 18:55:537#include <map>
[email protected]68f88b992011-05-07 02:01:398#include <set>
9#include <vector>
[email protected]3cdacd42010-04-30 18:55:5310
initial.commit09911bf2008-07-26 23:55:2911#include "base/command_line.h"
[email protected]6641bf662009-08-21 00:34:0912#include "base/file_util.h"
initial.commit09911bf2008-07-26 23:55:2913#include "base/path_service.h"
[email protected]985655a2011-02-23 09:54:2514#include "base/synchronization/waitable_event.h"
[email protected]c6032e82010-09-13 20:06:0515#include "base/task.h"
[email protected]34b99632011-01-01 01:01:0616#include "base/threading/thread.h"
17#include "base/threading/thread_restrictions.h"
[email protected]e13ad79b2010-07-22 21:36:5018#include "chrome/browser/automation/automation_provider_list.h"
[email protected]a07676b22011-06-17 16:36:5319#include "chrome/browser/background/background_mode_manager.h"
[email protected]e6b5bc22011-09-08 22:01:5620#include "chrome/browser/chrome_browser_main.h"
[email protected]ac262c9f2008-10-19 17:45:2121#include "chrome/browser/browser_trial.h"
[email protected]dfba8762011-09-02 12:49:5422#include "chrome/browser/chrome_plugin_service_filter.h"
[email protected]c1adf5a2011-08-03 22:11:3723#include "chrome/browser/component_updater/component_updater_configurator.h"
24#include "chrome/browser/component_updater/component_updater_service.h"
[email protected]0639cfd2011-07-20 11:38:0325#include "chrome/browser/debugger/devtools_protocol_handler.h"
[email protected]4475d232011-07-27 15:29:2026#include "chrome/browser/debugger/remote_debugging_server.h"
[email protected]254ed742011-08-16 18:45:2727#include "chrome/browser/download/download_request_limiter.h"
[email protected]3ce02412011-03-01 12:01:1528#include "chrome/browser/extensions/extension_event_router_forwarder.h"
[email protected]fc4facd2011-03-22 23:18:5029#include "chrome/browser/extensions/extension_tab_id_map.h"
[email protected]214538842011-04-01 18:47:2430#include "chrome/browser/extensions/user_script_listener.h"
[email protected]815856722011-04-13 17:19:1931#include "chrome/browser/first_run/upgrade_util.h"
[email protected]f7578f52010-08-30 22:22:4932#include "chrome/browser/google/google_url_tracker.h"
[email protected]dcefa302009-05-20 00:24:3933#include "chrome/browser/icon_manager.h"
[email protected]c4ff4952010-01-08 19:12:4734#include "chrome/browser/intranet_redirect_detector.h"
[email protected]0ac83682010-01-22 17:46:2735#include "chrome/browser/io_thread.h"
[email protected]dc6f4962009-02-13 01:25:5036#include "chrome/browser/metrics/metrics_service.h"
[email protected]0b565182011-03-02 18:11:1537#include "chrome/browser/metrics/thread_watcher.h"
[email protected]b2fcd0e2010-12-01 15:19:4038#include "chrome/browser/net/chrome_net_log.h"
[email protected]d393a0fd2009-05-13 23:32:0139#include "chrome/browser/net/sdch_dictionary_fetcher.h"
[email protected]29672ab2009-10-30 03:44:0340#include "chrome/browser/notifications/notification_ui_manager.h"
[email protected]985655a2011-02-23 09:54:2541#include "chrome/browser/policy/browser_policy_connector.h"
[email protected]caf63aea2011-04-26 11:04:1042#include "chrome/browser/prefs/browser_prefs.h"
[email protected]37858e52010-08-26 00:22:0243#include "chrome/browser/prefs/pref_service.h"
[email protected]1459fb62011-05-25 19:03:2744#include "chrome/browser/prerender/prerender_tracker.h"
[email protected]68f88b992011-05-07 02:01:3945#include "chrome/browser/printing/background_printing_manager.h"
[email protected]e06131d2010-02-10 18:40:3346#include "chrome/browser/printing/print_job_manager.h"
[email protected]dbeebd52010-11-16 20:34:1647#include "chrome/browser/printing/print_preview_tab_controller.h"
[email protected]8ecad5e2010-12-02 21:18:3348#include "chrome/browser/profiles/profile_manager.h"
[email protected]8bcdf072011-06-03 16:52:1549#include "chrome/browser/renderer_host/chrome_resource_dispatcher_host_delegate.h"
[email protected]81218f42009-02-05 18:48:0850#include "chrome/browser/safe_browsing/safe_browsing_service.h"
[email protected]e450fa62011-02-01 12:52:5651#include "chrome/browser/shell_integration.h"
[email protected]8b8e7c92010-08-19 18:05:5652#include "chrome/browser/sidebar/sidebar_manager.h"
[email protected]9e7f015f2011-05-28 00:24:2553#include "chrome/browser/status_icons/status_tray.h"
[email protected]0b4d3382010-07-14 16:13:0454#include "chrome/browser/tab_closeable_state_watcher.h"
[email protected]71b73f02011-04-06 15:57:2955#include "chrome/browser/ui/browser_list.h"
[email protected]87522db92011-07-28 23:44:1456#include "chrome/browser/web_resource/gpu_blacklist_updater.h"
[email protected]4ef795df2010-02-03 02:35:0857#include "chrome/common/chrome_constants.h"
[email protected]432115822011-07-10 15:52:2758#include "chrome/common/chrome_notification_types.h"
initial.commit09911bf2008-07-26 23:55:2959#include "chrome/common/chrome_paths.h"
60#include "chrome/common/chrome_switches.h"
[email protected]de23f3f2011-05-18 16:20:2361#include "chrome/common/default_plugin.h"
[email protected]f1b6de22010-03-06 12:13:4762#include "chrome/common/extensions/extension_l10n_util.h"
[email protected]985655a2011-02-23 09:54:2563#include "chrome/common/extensions/extension_resource.h"
[email protected]ea587b02010-05-21 15:01:3564#include "chrome/common/json_pref_store.h"
initial.commit09911bf2008-07-26 23:55:2965#include "chrome/common/pref_names.h"
[email protected]5c08f222010-09-22 09:37:2166#include "chrome/common/switch_utils.h"
[email protected]985655a2011-02-23 09:54:2567#include "chrome/common/url_constants.h"
[email protected]bd48c2b02010-04-09 20:32:4268#include "chrome/installer/util/google_update_constants.h"
[email protected]a01efd22011-03-01 00:38:3269#include "content/browser/browser_child_process_host.h"
[email protected]b0f146f2011-09-15 22:14:2570#include "content/browser/browser_process_sub_thread.h"
[email protected]a01efd22011-03-01 00:38:3271#include "content/browser/browser_thread.h"
[email protected]419a0572011-04-18 22:21:4672#include "content/browser/child_process_security_policy.h"
[email protected]b46442d7e2011-06-29 02:16:0673#include "content/browser/debugger/devtools_manager.h"
[email protected]71bf3f5e2011-08-15 21:05:2274#include "content/browser/download/download_file_manager.h"
[email protected]8f6a3b852011-07-19 16:48:5675#include "content/browser/download/mhtml_generation_manager.h"
[email protected]0ffaa482011-07-14 23:41:2876#include "content/browser/download/save_file_manager.h"
[email protected]d9f37932011-05-09 20:09:2477#include "content/browser/gpu/gpu_process_host_ui_shim.h"
[email protected]6eac57a2011-07-12 21:15:0978#include "content/browser/net/browser_online_state_observer.h"
[email protected]a01efd22011-03-01 00:38:3279#include "content/browser/plugin_service.h"
80#include "content/browser/renderer_host/render_process_host.h"
81#include "content/browser/renderer_host/resource_dispatcher_host.h"
[email protected]ffd7d732011-09-13 04:20:3482#include "content/common/net/url_fetcher.h"
[email protected]f20d7332011-03-08 21:11:5383#include "content/common/notification_service.h"
[email protected]d55aaa132009-09-28 21:08:0484#include "ipc/ipc_logging.h"
[email protected]12c84e22011-07-11 09:35:4585#include "net/socket/client_socket_pool_manager.h"
[email protected]abe2c032011-03-31 18:49:3486#include "net/url_request/url_request_context_getter.h"
[email protected]2dfeaf92011-01-10 21:08:2187#include "ui/base/clipboard/clipboard.h"
[email protected]c051a1b2011-01-21 23:30:1788#include "ui/base/l10n/l10n_util.h"
[email protected]de23f3f2011-05-18 16:20:2389#include "webkit/plugins/npapi/plugin_list.h"
[email protected]b112a4c2009-02-01 20:24:0190
91#if defined(OS_WIN)
[email protected]2362e4f2009-05-08 00:34:0592#include "views/focus/view_storage.h"
[email protected]86230b92009-11-23 20:38:3893#endif
94
[email protected]d55aaa132009-09-28 21:08:0495#if defined(IPC_MESSAGE_LOG_ENABLED)
[email protected]ff47b2962011-03-07 23:51:4996#include "content/common/child_process_messages.h"
[email protected]d55aaa132009-09-28 21:08:0497#endif
98
[email protected]db0e86dd2011-03-16 14:47:2199#if defined(OS_CHROMEOS)
100#include "chrome/browser/chromeos/proxy_config_service_impl.h"
[email protected]2d14b3732011-05-10 16:48:44101#include "chrome/browser/chromeos/web_socket_proxy_controller.h"
[email protected]db0e86dd2011-03-16 14:47:21102#endif // defined(OS_CHROMEOS)
103
[email protected]3cdacd42010-04-30 18:55:53104#if (defined(OS_WIN) || defined(OS_LINUX)) && !defined(OS_CHROMEOS)
105// How often to check if the persistent instance of Chrome needs to restart
106// to install an update.
107static const int kUpdateCheckIntervalHours = 6;
108#endif
109
[email protected]af391f02011-09-15 06:13:35110#if defined(OS_WIN)
111// Attest to the fact that the call to the file thread to save preferences has
112// run, and it is safe to terminate. This avoids the potential of some other
113// task prematurely terminating our waiting message loop by posting a
114// QuitTask().
115static bool g_end_session_file_thread_has_completed = false;
116#endif
117
[email protected]c6032e82010-09-13 20:06:05118#if defined(USE_X11)
119// How long to wait for the File thread to complete during EndSession, on
120// Linux. We have a timeout here because we're unable to run the UI messageloop
121// and there's some deadlock risk. Our only option is to exit anyway.
122static const int kEndSessionTimeoutSeconds = 10;
123#endif
124
[email protected]bb975362009-01-21 01:00:22125BrowserProcessImpl::BrowserProcessImpl(const CommandLine& command_line)
initial.commit09911bf2008-07-26 23:55:29126 : created_resource_dispatcher_host_(false),
127 created_metrics_service_(false),
128 created_io_thread_(false),
129 created_file_thread_(false),
130 created_db_thread_(false),
[email protected]914511712009-11-23 19:42:33131 created_process_launcher_thread_(false),
[email protected]875ee822010-05-18 20:58:01132 created_cache_thread_(false),
[email protected]0b565182011-03-02 18:11:15133 created_watchdog_thread_(false),
[email protected]2d14b3732011-05-10 16:48:44134#if defined(OS_CHROMEOS)
135 created_web_socket_proxy_thread_(false),
136#endif
initial.commit09911bf2008-07-26 23:55:29137 created_profile_manager_(false),
138 created_local_state_(false),
[email protected]b112a4c2009-02-01 20:24:01139 created_icon_manager_(false),
[email protected]40ecc902009-03-16 13:42:47140 created_devtools_manager_(false),
[email protected]8b8e7c92010-08-19 18:05:56141 created_sidebar_manager_(false),
[email protected]985655a2011-02-23 09:54:25142 created_browser_policy_connector_(false),
[email protected]29672ab2009-10-30 03:44:03143 created_notification_ui_manager_(false),
[email protected]462a0ff2011-06-02 17:15:34144 created_safe_browsing_service_(false),
initial.commit09911bf2008-07-26 23:55:29145 module_ref_count_(0),
[email protected]afd20c022010-06-10 00:48:20146 did_start_(false),
[email protected]1b2db1a2008-08-08 17:46:13147 checked_for_new_frames_(false),
[email protected]4747caf2011-03-23 20:09:21148 using_new_frames_(false) {
initial.commit09911bf2008-07-26 23:55:29149 g_browser_process = this;
[email protected]2dfeaf92011-01-10 21:08:21150 clipboard_.reset(new ui::Clipboard);
initial.commit09911bf2008-07-26 23:55:29151
152 // Must be created after the NotificationService.
153 print_job_manager_.reset(new printing::PrintJobManager);
154
[email protected]b2fcd0e2010-12-01 15:19:40155 net_log_.reset(new ChromeNetLog);
[email protected]3ce02412011-03-01 12:01:15156
157 extension_event_router_forwarder_ = new ExtensionEventRouterForwarder;
[email protected]fc4facd2011-03-22 23:18:50158
159 ExtensionTabIdMap::GetInstance()->Init();
[email protected]6eac57a2011-07-12 21:15:09160
161 online_state_observer_.reset(new BrowserOnlineStateObserver);
initial.commit09911bf2008-07-26 23:55:29162}
163
164BrowserProcessImpl::~BrowserProcessImpl() {
[email protected]2d14b3732011-05-10 16:48:44165#if defined(OS_CHROMEOS)
166 if (web_socket_proxy_thread_.get())
167 chromeos::WebSocketProxyController::Shutdown();
168 web_socket_proxy_thread_.reset();
169#endif
170
initial.commit09911bf2008-07-26 23:55:29171 // Delete the AutomationProviderList before NotificationService,
172 // since it may try to unregister notifications
173 // Both NotificationService and AutomationProvider are singleton instances in
174 // the BrowserProcess. Since AutomationProvider may have some active
175 // notification observers, it is essential that it gets destroyed before the
176 // NotificationService. NotificationService won't be destroyed until after
177 // this destructor is run.
178 automation_provider_list_.reset();
179
[email protected]d393a0fd2009-05-13 23:32:01180 // We need to shutdown the SdchDictionaryFetcher as it regularly holds
181 // a pointer to a URLFetcher, and that URLFetcher (upon destruction) will do
182 // a PostDelayedTask onto the IO thread. This shutdown call will both discard
183 // any pending URLFetchers, and avoid creating any more.
184 SdchDictionaryFetcher::Shutdown();
185
[email protected]51ac040762011-01-20 02:01:04186 // We need to destroy the MetricsService, GoogleURLTracker,
187 // IntranetRedirectDetector, and SafeBrowsing ClientSideDetectionService
[email protected]9efb46692011-08-23 12:56:05188 // (owned by the SafeBrowsingService) before the io_thread_ gets destroyed,
189 // since their destructors can call the URLFetcher destructor, which does a
190 // PostDelayedTask operation on the IO thread.
191 // (The IO thread will handle that URLFetcher operation before going away.)
initial.commit09911bf2008-07-26 23:55:29192 metrics_service_.reset();
193 google_url_tracker_.reset();
[email protected]c4ff4952010-01-08 19:12:47194 intranet_redirect_detector_.reset();
[email protected]9efb46692011-08-23 12:56:05195#if defined(ENABLE_SAFE_BROWSING)
196 if (safe_browsing_service_.get()) {
197 safe_browsing_service()->ShutDown();
198 }
199#endif
initial.commit09911bf2008-07-26 23:55:29200
[email protected]d8a899c2010-09-21 04:50:33201 // Need to clear the desktop notification balloons before the io_thread_ and
202 // before the profiles, since if there are any still showing we will access
203 // those things during teardown.
204 notification_ui_manager_.reset();
205
[email protected]18590f22011-07-29 16:41:28206 // FIXME - We shouldn't need this, it's because of DefaultRequestContext! :(
207 // We need to kill off all URLFetchers using profile related
208 // URLRequestContexts. Normally that'd be covered by deleting the Profiles,
209 // but we have some URLFetchers using the DefaultRequestContext, so they need
210 // to be cancelled too. Remove this when DefaultRequestContext goes away.
211 BrowserThread::PostTask(BrowserThread::IO, FROM_HERE,
212 NewRunnableFunction(&URLFetcher::CancelAll));
213
initial.commit09911bf2008-07-26 23:55:29214 // Need to clear profiles (download managers) before the io_thread_.
215 profile_manager_.reset();
216
217 // Debugger must be cleaned up before IO thread and NotificationService.
[email protected]4475d232011-07-27 15:29:20218 remote_debugging_server_.reset();
219
[email protected]5613126e2011-01-31 15:27:55220 if (devtools_legacy_handler_.get()) {
221 devtools_legacy_handler_->Stop();
222 devtools_legacy_handler_ = NULL;
223 }
initial.commit09911bf2008-07-26 23:55:29224
[email protected]462a0ff2011-06-02 17:15:34225 if (resource_dispatcher_host_.get()) {
initial.commit09911bf2008-07-26 23:55:29226 // Cancel pending requests and prevent new requests.
227 resource_dispatcher_host()->Shutdown();
228 }
229
[email protected]fc4facd2011-03-22 23:18:50230 ExtensionTabIdMap::GetInstance()->Shutdown();
231
[email protected]985655a2011-02-23 09:54:25232 // The policy providers managed by |browser_policy_connector_| need to shut
233 // down while the IO and FILE threads are still alive.
234 browser_policy_connector_.reset();
[email protected]f2a893c2011-01-05 09:38:07235
[email protected]7a31f7c2011-03-21 23:22:04236 // Destroying the GpuProcessHostUIShims on the UI thread posts a task to
237 // delete related objects on the GPU thread. This must be done before
238 // stopping the GPU thread. The GPU thread will close IPC channels to renderer
239 // processes so this has to happen before stopping the IO thread.
240 GpuProcessHostUIShim::DestroyAll();
[email protected]7a31f7c2011-03-21 23:22:04241
[email protected]8fd11832011-07-14 20:01:13242 // Stop the watchdog thread before stopping other threads.
243 watchdog_thread_.reset();
244
initial.commit09911bf2008-07-26 23:55:29245 // Need to stop io_thread_ before resource_dispatcher_host_, since
246 // io_thread_ may still deref ResourceDispatcherHost and handle resource
247 // request before going away.
[email protected]0ac83682010-01-22 17:46:27248 io_thread_.reset();
initial.commit09911bf2008-07-26 23:55:29249
[email protected]875ee822010-05-18 20:58:01250 // The IO thread was the only user of this thread.
251 cache_thread_.reset();
252
[email protected]914511712009-11-23 19:42:33253 // Stop the process launcher thread after the IO thread, in case the IO thread
254 // posted a task to terminate a process on the process launcher thread.
255 process_launcher_thread_.reset();
256
initial.commit09911bf2008-07-26 23:55:29257 // Clean up state that lives on the file_thread_ before it goes away.
258 if (resource_dispatcher_host_.get()) {
259 resource_dispatcher_host()->download_file_manager()->Shutdown();
260 resource_dispatcher_host()->save_file_manager()->Shutdown();
261 }
262
263 // Need to stop the file_thread_ here to force it to process messages in its
264 // message loop from the previous call to shutdown the DownloadFileManager,
265 // SaveFileManager and SessionService.
266 file_thread_.reset();
267
268 // With the file_thread_ flushed, we can release any icon resources.
269 icon_manager_.reset();
270
271 // Need to destroy ResourceDispatcherHost before PluginService and
[email protected]49f28bc72010-02-04 00:10:01272 // SafeBrowsingService, since it caches a pointer to it. This also
273 // causes the webkit thread to terminate.
initial.commit09911bf2008-07-26 23:55:29274 resource_dispatcher_host_.reset();
275
276 // Wait for the pending print jobs to finish.
277 print_job_manager_->OnQuit();
278 print_job_manager_.reset();
279
[email protected]0b4d3382010-07-14 16:13:04280 // Destroy TabCloseableStateWatcher before NotificationService since the
281 // former registers for notifications.
282 tab_closeable_state_watcher_.reset();
283
initial.commit09911bf2008-07-26 23:55:29284 g_browser_process = NULL;
285}
286
[email protected]c6032e82010-09-13 20:06:05287#if defined(OS_WIN)
[email protected]af391f02011-09-15 06:13:35288// Send a QuitTask to the given MessageLoop when the (file) thread has processed
289// our (other) recent requests (to save preferences).
290// Change the boolean so that the receiving thread will know that we did indeed
291// send the QuitTask that terminated the message loop.
[email protected]295039bd2008-08-15 04:32:57292static void PostQuit(MessageLoop* message_loop) {
[email protected]af391f02011-09-15 06:13:35293 g_end_session_file_thread_has_completed = true;
[email protected]295039bd2008-08-15 04:32:57294 message_loop->PostTask(FROM_HERE, new MessageLoop::QuitTask());
295}
[email protected]c6032e82010-09-13 20:06:05296#elif defined(USE_X11)
297static void Signal(base::WaitableEvent* event) {
298 event->Signal();
299}
300#endif
initial.commit09911bf2008-07-26 23:55:29301
[email protected]b443cb042009-12-15 22:05:09302unsigned int BrowserProcessImpl::AddRefModule() {
303 DCHECK(CalledOnValidThread());
[email protected]63b9d962011-09-14 20:32:31304 CHECK(!IsShuttingDown());
[email protected]afd20c022010-06-10 00:48:20305 did_start_ = true;
[email protected]b443cb042009-12-15 22:05:09306 module_ref_count_++;
307 return module_ref_count_;
308}
309
310unsigned int BrowserProcessImpl::ReleaseModule() {
311 DCHECK(CalledOnValidThread());
[email protected]760d970a2010-05-18 00:39:18312 DCHECK_NE(0u, module_ref_count_);
[email protected]b443cb042009-12-15 22:05:09313 module_ref_count_--;
314 if (0 == module_ref_count_) {
[email protected]7d038c32010-12-14 00:40:00315 // Allow UI and IO threads to do blocking IO on shutdown, since we do a lot
316 // of it on shutdown for valid reasons.
317 base::ThreadRestrictions::SetIOAllowed(true);
318 io_thread()->message_loop()->PostTask(
319 FROM_HERE,
320 NewRunnableFunction(&base::ThreadRestrictions::SetIOAllowed, true));
[email protected]8d2f91e2011-09-15 22:38:04321 MessageLoop::current()->PostTask(
322 FROM_HERE, NewRunnableFunction(content::DidEndMainMessageLoop));
[email protected]b443cb042009-12-15 22:05:09323 MessageLoop::current()->Quit();
324 }
325 return module_ref_count_;
326}
327
initial.commit09911bf2008-07-26 23:55:29328void BrowserProcessImpl::EndSession() {
initial.commit09911bf2008-07-26 23:55:29329 // Mark all the profiles as clean.
330 ProfileManager* pm = profile_manager();
[email protected]844a1002011-04-19 11:37:21331 std::vector<Profile*> profiles(pm->GetLoadedProfiles());
332 for (size_t i = 0; i < profiles.size(); ++i)
333 profiles[i]->MarkAsCleanShutdown();
initial.commit09911bf2008-07-26 23:55:29334
335 // Tell the metrics service it was cleanly shutdown.
336 MetricsService* metrics = g_browser_process->metrics_service();
337 if (metrics && local_state()) {
initial.commit09911bf2008-07-26 23:55:29338 metrics->RecordStartOfSessionEnd();
339
340 // MetricsService lazily writes to prefs, force it to write now.
[email protected]6faa0e0d2009-04-28 06:50:36341 local_state()->SavePersistentPrefs();
initial.commit09911bf2008-07-26 23:55:29342 }
343
344 // We must write that the profile and metrics service shutdown cleanly,
345 // otherwise on startup we'll think we crashed. So we block until done and
346 // then proceed with normal shutdown.
[email protected]c6032e82010-09-13 20:06:05347#if defined(USE_X11)
348 // Can't run a local loop on linux. Instead create a waitable event.
[email protected]0bfbcdb2011-09-15 21:28:04349 scoped_ptr<base::WaitableEvent> done_writing(
350 new base::WaitableEvent(false, false));
[email protected]d04e7662010-10-10 22:24:48351 BrowserThread::PostTask(BrowserThread::FILE, FROM_HERE,
[email protected]0bfbcdb2011-09-15 21:28:04352 NewRunnableFunction(Signal, done_writing.get()));
353 // If all file writes haven't cleared in the timeout, leak the WaitableEvent
354 // so that there's no race to reference it in Signal().
355 if (!done_writing->TimedWait(
356 base::TimeDelta::FromSeconds(kEndSessionTimeoutSeconds)))
357 ignore_result(done_writing.release());
358
[email protected]c6032e82010-09-13 20:06:05359#elif defined(OS_WIN)
[email protected]d04e7662010-10-10 22:24:48360 BrowserThread::PostTask(BrowserThread::FILE, FROM_HERE,
[email protected]295039bd2008-08-15 04:32:57361 NewRunnableFunction(PostQuit, MessageLoop::current()));
[email protected]af391f02011-09-15 06:13:35362 int quits_received = 0;
363 do {
364 MessageLoop::current()->Run();
365 ++quits_received;
366 } while (!g_end_session_file_thread_has_completed);
367 // If we did get extra quits, then we should re-post them to the message loop.
368 while (--quits_received > 0)
369 MessageLoop::current()->PostTask(FROM_HERE, new MessageLoop::QuitTask());
[email protected]c6032e82010-09-13 20:06:05370#else
371 NOTIMPLEMENTED();
372#endif
initial.commit09911bf2008-07-26 23:55:29373}
374
[email protected]e13ad79b2010-07-22 21:36:50375ResourceDispatcherHost* BrowserProcessImpl::resource_dispatcher_host() {
376 DCHECK(CalledOnValidThread());
377 if (!created_resource_dispatcher_host_)
378 CreateResourceDispatcherHost();
379 return resource_dispatcher_host_.get();
380}
381
382MetricsService* BrowserProcessImpl::metrics_service() {
383 DCHECK(CalledOnValidThread());
384 if (!created_metrics_service_)
385 CreateMetricsService();
386 return metrics_service_.get();
387}
388
389IOThread* BrowserProcessImpl::io_thread() {
390 DCHECK(CalledOnValidThread());
391 if (!created_io_thread_)
392 CreateIOThread();
393 return io_thread_.get();
394}
395
396base::Thread* BrowserProcessImpl::file_thread() {
397 DCHECK(CalledOnValidThread());
398 if (!created_file_thread_)
399 CreateFileThread();
400 return file_thread_.get();
401}
402
403base::Thread* BrowserProcessImpl::db_thread() {
404 DCHECK(CalledOnValidThread());
405 if (!created_db_thread_)
406 CreateDBThread();
407 return db_thread_.get();
408}
409
410base::Thread* BrowserProcessImpl::process_launcher_thread() {
411 DCHECK(CalledOnValidThread());
412 if (!created_process_launcher_thread_)
413 CreateProcessLauncherThread();
414 return process_launcher_thread_.get();
415}
416
417base::Thread* BrowserProcessImpl::cache_thread() {
418 DCHECK(CalledOnValidThread());
419 if (!created_cache_thread_)
420 CreateCacheThread();
421 return cache_thread_.get();
422}
423
[email protected]0b565182011-03-02 18:11:15424WatchDogThread* BrowserProcessImpl::watchdog_thread() {
425 DCHECK(CalledOnValidThread());
426 if (!created_watchdog_thread_)
427 CreateWatchdogThread();
428 DCHECK(watchdog_thread_.get() != NULL);
429 return watchdog_thread_.get();
430}
431
[email protected]2d14b3732011-05-10 16:48:44432#if defined(OS_CHROMEOS)
433base::Thread* BrowserProcessImpl::web_socket_proxy_thread() {
434 DCHECK(CalledOnValidThread());
435 if (!created_web_socket_proxy_thread_)
436 CreateWebSocketProxyThread();
437 DCHECK(web_socket_proxy_thread_.get() != NULL);
438 return web_socket_proxy_thread_.get();
439}
440#endif
441
[email protected]e13ad79b2010-07-22 21:36:50442ProfileManager* BrowserProcessImpl::profile_manager() {
443 DCHECK(CalledOnValidThread());
444 if (!created_profile_manager_)
445 CreateProfileManager();
446 return profile_manager_.get();
447}
448
449PrefService* BrowserProcessImpl::local_state() {
450 DCHECK(CalledOnValidThread());
451 if (!created_local_state_)
452 CreateLocalState();
453 return local_state_.get();
454}
455
456DevToolsManager* BrowserProcessImpl::devtools_manager() {
457 DCHECK(CalledOnValidThread());
458 if (!created_devtools_manager_)
459 CreateDevToolsManager();
460 return devtools_manager_.get();
461}
462
[email protected]8b8e7c92010-08-19 18:05:56463SidebarManager* BrowserProcessImpl::sidebar_manager() {
464 DCHECK(CalledOnValidThread());
465 if (!created_sidebar_manager_)
466 CreateSidebarManager();
467 return sidebar_manager_.get();
468}
469
[email protected]2dfeaf92011-01-10 21:08:21470ui::Clipboard* BrowserProcessImpl::clipboard() {
[email protected]e13ad79b2010-07-22 21:36:50471 DCHECK(CalledOnValidThread());
472 return clipboard_.get();
473}
474
[email protected]abe2c032011-03-31 18:49:34475net::URLRequestContextGetter* BrowserProcessImpl::system_request_context() {
[email protected]db0e86dd2011-03-16 14:47:21476 DCHECK(CalledOnValidThread());
477 return io_thread()->system_url_request_context_getter();
478}
479
480#if defined(OS_CHROMEOS)
481chromeos::ProxyConfigServiceImpl*
482BrowserProcessImpl::chromeos_proxy_config_service_impl() {
483 DCHECK(CalledOnValidThread());
484 if (!chromeos_proxy_config_service_impl_) {
485 chromeos_proxy_config_service_impl_ =
486 new chromeos::ProxyConfigServiceImpl();
487 }
488 return chromeos_proxy_config_service_impl_;
489}
490#endif // defined(OS_CHROMEOS)
491
[email protected]3ce02412011-03-01 12:01:15492ExtensionEventRouterForwarder*
493BrowserProcessImpl::extension_event_router_forwarder() {
494 return extension_event_router_forwarder_.get();
495}
496
[email protected]e13ad79b2010-07-22 21:36:50497NotificationUIManager* BrowserProcessImpl::notification_ui_manager() {
498 DCHECK(CalledOnValidThread());
499 if (!created_notification_ui_manager_)
500 CreateNotificationUIManager();
501 return notification_ui_manager_.get();
502}
503
[email protected]985655a2011-02-23 09:54:25504policy::BrowserPolicyConnector* BrowserProcessImpl::browser_policy_connector() {
[email protected]f2a893c2011-01-05 09:38:07505 DCHECK(CalledOnValidThread());
[email protected]985655a2011-02-23 09:54:25506 if (!created_browser_policy_connector_) {
507 DCHECK(browser_policy_connector_.get() == NULL);
508 created_browser_policy_connector_ = true;
[email protected]f31e2e52011-07-14 16:01:19509#if defined(ENABLE_CONFIGURATION_POLICY)
[email protected]d9ee002c2011-04-27 12:52:54510 browser_policy_connector_.reset(policy::BrowserPolicyConnector::Create());
[email protected]f31e2e52011-07-14 16:01:19511#endif
[email protected]f2a893c2011-01-05 09:38:07512 }
[email protected]985655a2011-02-23 09:54:25513 return browser_policy_connector_.get();
[email protected]f2a893c2011-01-05 09:38:07514}
515
[email protected]e13ad79b2010-07-22 21:36:50516IconManager* BrowserProcessImpl::icon_manager() {
517 DCHECK(CalledOnValidThread());
518 if (!created_icon_manager_)
519 CreateIconManager();
520 return icon_manager_.get();
521}
522
523ThumbnailGenerator* BrowserProcessImpl::GetThumbnailGenerator() {
524 return &thumbnail_generator_;
525}
526
527AutomationProviderList* BrowserProcessImpl::InitAutomationProviderList() {
528 DCHECK(CalledOnValidThread());
529 if (automation_provider_list_.get() == NULL) {
530 automation_provider_list_.reset(AutomationProviderList::GetInstance());
531 }
532 return automation_provider_list_.get();
533}
534
[email protected]5613126e2011-01-31 15:27:55535void BrowserProcessImpl::InitDevToolsHttpProtocolHandler(
[email protected]4475d232011-07-27 15:29:20536 Profile* profile,
[email protected]01000cf12011-02-04 11:39:22537 const std::string& ip,
[email protected]5613126e2011-01-31 15:27:55538 int port,
539 const std::string& frontend_url) {
[email protected]e13ad79b2010-07-22 21:36:50540 DCHECK(CalledOnValidThread());
[email protected]4475d232011-07-27 15:29:20541 remote_debugging_server_.reset(
542 new RemoteDebuggingServer(profile, ip, port, frontend_url));
[email protected]5613126e2011-01-31 15:27:55543}
544
545void BrowserProcessImpl::InitDevToolsLegacyProtocolHandler(int port) {
546 DCHECK(CalledOnValidThread());
547 devtools_legacy_handler_ = DevToolsProtocolHandler::Start(port);
[email protected]e13ad79b2010-07-22 21:36:50548}
549
550bool BrowserProcessImpl::IsShuttingDown() {
551 DCHECK(CalledOnValidThread());
552 return did_start_ && 0 == module_ref_count_;
553}
554
initial.commit09911bf2008-07-26 23:55:29555printing::PrintJobManager* BrowserProcessImpl::print_job_manager() {
556 // TODO(abarth): DCHECK(CalledOnValidThread());
[email protected]d8922f22010-05-07 00:57:27557 // http://code.google.com/p/chromium/issues/detail?id=6828
initial.commit09911bf2008-07-26 23:55:29558 // print_job_manager_ is initialized in the constructor and destroyed in the
559 // destructor, so it should always be valid.
560 DCHECK(print_job_manager_.get());
561 return print_job_manager_.get();
562}
563
[email protected]dbeebd52010-11-16 20:34:16564printing::PrintPreviewTabController*
565 BrowserProcessImpl::print_preview_tab_controller() {
566 DCHECK(CalledOnValidThread());
567 if (!print_preview_tab_controller_.get())
568 CreatePrintPreviewTabController();
569 return print_preview_tab_controller_.get();
570}
571
[email protected]68f88b992011-05-07 02:01:39572printing::BackgroundPrintingManager*
573 BrowserProcessImpl::background_printing_manager() {
574 DCHECK(CalledOnValidThread());
575 if (!background_printing_manager_.get())
576 CreateBackgroundPrintingManager();
577 return background_printing_manager_.get();
578}
579
[email protected]e13ad79b2010-07-22 21:36:50580GoogleURLTracker* BrowserProcessImpl::google_url_tracker() {
581 DCHECK(CalledOnValidThread());
582 if (!google_url_tracker_.get())
583 CreateGoogleURLTracker();
584 return google_url_tracker_.get();
585}
586
587IntranetRedirectDetector* BrowserProcessImpl::intranet_redirect_detector() {
588 DCHECK(CalledOnValidThread());
589 if (!intranet_redirect_detector_.get())
590 CreateIntranetRedirectDetector();
591 return intranet_redirect_detector_.get();
592}
593
594const std::string& BrowserProcessImpl::GetApplicationLocale() {
595 DCHECK(!locale_.empty());
596 return locale_;
597}
598
599void BrowserProcessImpl::SetApplicationLocale(const std::string& locale) {
600 locale_ = locale;
601 extension_l10n_util::SetProcessLocale(locale);
602}
603
[email protected]073ed7b2010-09-27 09:20:02604DownloadStatusUpdater* BrowserProcessImpl::download_status_updater() {
605 return &download_status_updater_;
606}
607
[email protected]254ed742011-08-16 18:45:27608DownloadRequestLimiter* BrowserProcessImpl::download_request_limiter() {
609 DCHECK(CalledOnValidThread());
610 if (!download_request_limiter_)
611 download_request_limiter_ = new DownloadRequestLimiter();
612 return download_request_limiter_;
613}
614
[email protected]e13ad79b2010-07-22 21:36:50615TabCloseableStateWatcher* BrowserProcessImpl::tab_closeable_state_watcher() {
616 DCHECK(CalledOnValidThread());
617 if (!tab_closeable_state_watcher_.get())
618 CreateTabCloseableStateWatcher();
619 return tab_closeable_state_watcher_.get();
620}
621
[email protected]9e7f015f2011-05-28 00:24:25622BackgroundModeManager* BrowserProcessImpl::background_mode_manager() {
623 DCHECK(CalledOnValidThread());
624 if (!background_mode_manager_.get())
625 CreateBackgroundModeManager();
626 return background_mode_manager_.get();
627}
628
629StatusTray* BrowserProcessImpl::status_tray() {
630 DCHECK(CalledOnValidThread());
631 if (!status_tray_.get())
632 CreateStatusTray();
633 return status_tray_.get();
634}
635
[email protected]462a0ff2011-06-02 17:15:34636
637SafeBrowsingService* BrowserProcessImpl::safe_browsing_service() {
638 DCHECK(CalledOnValidThread());
639 if (!created_safe_browsing_service_)
640 CreateSafeBrowsingService();
641 return safe_browsing_service_.get();
642}
643
[email protected]a7a5e992010-12-09 23:39:51644safe_browsing::ClientSideDetectionService*
645 BrowserProcessImpl::safe_browsing_detection_service() {
646 DCHECK(CalledOnValidThread());
[email protected]9efb46692011-08-23 12:56:05647 if (safe_browsing_service())
648 return safe_browsing_service()->safe_browsing_detection_service();
649 return NULL;
[email protected]a7a5e992010-12-09 23:39:51650}
651
[email protected]8b08a47f2011-02-25 12:36:37652bool BrowserProcessImpl::plugin_finder_disabled() const {
653 return *plugin_finder_disabled_pref_;
654}
655
[email protected]432115822011-07-10 15:52:27656void BrowserProcessImpl::Observe(int type,
[email protected]6618d1d2010-12-15 21:18:47657 const NotificationSource& source,
658 const NotificationDetails& details) {
[email protected]432115822011-07-10 15:52:27659 if (type == chrome::NOTIFICATION_PREF_CHANGED) {
[email protected]e450fa62011-02-01 12:52:56660 std::string* pref = Details<std::string>(details).ptr();
661 if (*pref == prefs::kDefaultBrowserSettingEnabled) {
662 if (local_state_->GetBoolean(prefs::kDefaultBrowserSettingEnabled))
663 ShellIntegration::SetAsDefaultBrowser();
[email protected]419a0572011-04-18 22:21:46664 } else if (*pref == prefs::kDisabledSchemes) {
665 ApplyDisabledSchemesPolicy();
[email protected]40850a52011-05-26 22:07:35666 } else if (*pref == prefs::kAllowCrossOriginAuthPrompt) {
667 ApplyAllowCrossOriginAuthPromptPolicy();
[email protected]e450fa62011-02-01 12:52:56668 }
[email protected]6618d1d2010-12-15 21:18:47669 } else {
670 NOTREACHED();
671 }
672}
673
[email protected]e13ad79b2010-07-22 21:36:50674#if (defined(OS_WIN) || defined(OS_LINUX)) && !defined(OS_CHROMEOS)
675void BrowserProcessImpl::StartAutoupdateTimer() {
[email protected]d323a172011-09-02 18:23:02676 autoupdate_timer_.Start(FROM_HERE,
[email protected]e13ad79b2010-07-22 21:36:50677 base::TimeDelta::FromHours(kUpdateCheckIntervalHours),
678 this,
679 &BrowserProcessImpl::OnAutoupdateTimer);
680}
681#endif
682
[email protected]d6f37fc2011-02-13 23:58:41683ChromeNetLog* BrowserProcessImpl::net_log() {
684 return net_log_.get();
685}
686
[email protected]1459fb62011-05-25 19:03:27687prerender::PrerenderTracker* BrowserProcessImpl::prerender_tracker() {
688 if (!prerender_tracker_.get())
689 prerender_tracker_.reset(new prerender::PrerenderTracker);
690
691 return prerender_tracker_.get();
692}
693
[email protected]e7f009d2011-06-14 19:35:10694MHTMLGenerationManager* BrowserProcessImpl::mhtml_generation_manager() {
695 if (!mhtml_generation_manager_.get())
696 mhtml_generation_manager_ = new MHTMLGenerationManager();
697
698 return mhtml_generation_manager_.get();
699}
700
[email protected]87522db92011-07-28 23:44:14701GpuBlacklistUpdater* BrowserProcessImpl::gpu_blacklist_updater() {
702 if (!gpu_blacklist_updater_.get())
703 gpu_blacklist_updater_ = new GpuBlacklistUpdater();
704
705 return gpu_blacklist_updater_.get();
706}
707
[email protected]c1adf5a2011-08-03 22:11:37708ComponentUpdateService* BrowserProcessImpl::component_updater() {
709#if defined(OS_CHROMEOS)
710 return NULL;
711#else
712 if (!component_updater_.get()) {
713 ComponentUpdateService::Configurator* configurator =
714 MakeChromeComponentUpdaterConfigurator(
715 CommandLine::ForCurrentProcess(),
716 io_thread()->system_url_request_context_getter());
717 // Creating the component updater does not do anything, components
718 // need to be registered and Start() needs to be called.
719 component_updater_.reset(ComponentUpdateServiceFactory(configurator));
720 }
721 return component_updater_.get();
[email protected]c1adf5a2011-08-03 22:11:37722#endif
[email protected]aafbcb572011-08-03 22:22:32723}
[email protected]c1adf5a2011-08-03 22:11:37724
initial.commit09911bf2008-07-26 23:55:29725void BrowserProcessImpl::CreateResourceDispatcherHost() {
726 DCHECK(!created_resource_dispatcher_host_ &&
727 resource_dispatcher_host_.get() == NULL);
728 created_resource_dispatcher_host_ = true;
729
[email protected]214538842011-04-01 18:47:24730 // UserScriptListener will delete itself.
731 ResourceQueue::DelegateSet resource_queue_delegates;
732 resource_queue_delegates.insert(new UserScriptListener());
733
734 resource_dispatcher_host_.reset(
735 new ResourceDispatcherHost(resource_queue_delegates));
initial.commit09911bf2008-07-26 23:55:29736 resource_dispatcher_host_->Initialize();
[email protected]1459fb62011-05-25 19:03:27737
[email protected]8bcdf072011-06-03 16:52:15738 resource_dispatcher_host_delegate_.reset(
739 new ChromeResourceDispatcherHostDelegate(resource_dispatcher_host_.get(),
[email protected]92e0a612011-05-30 21:37:00740 prerender_tracker()));
[email protected]8bcdf072011-06-03 16:52:15741 resource_dispatcher_host_->set_delegate(
742 resource_dispatcher_host_delegate_.get());
[email protected]40850a52011-05-26 22:07:35743
744 pref_change_registrar_.Add(prefs::kAllowCrossOriginAuthPrompt, this);
745 ApplyAllowCrossOriginAuthPromptPolicy();
initial.commit09911bf2008-07-26 23:55:29746}
747
748void BrowserProcessImpl::CreateMetricsService() {
749 DCHECK(!created_metrics_service_ && metrics_service_.get() == NULL);
750 created_metrics_service_ = true;
751
752 metrics_service_.reset(new MetricsService);
753}
754
755void BrowserProcessImpl::CreateIOThread() {
756 DCHECK(!created_io_thread_ && io_thread_.get() == NULL);
757 created_io_thread_ = true;
758
759 // Prior to starting the io thread, we create the plugin service as
760 // it is predominantly used from the io thread, but must be created
761 // on the main thread. The service ctor is inexpensive and does not
762 // invoke the io_thread() accessor.
[email protected]dfba8762011-09-02 12:49:54763 PluginService* plugin_service = PluginService::GetInstance();
764 plugin_service->set_filter(ChromePluginServiceFilter::GetInstance());
765 plugin_service->StartWatchingPlugins();
initial.commit09911bf2008-07-26 23:55:29766
[email protected]de23f3f2011-05-18 16:20:23767 // Add the Chrome specific plugins.
768 chrome::RegisterInternalDefaultPlugin();
769
770 // Register the internal Flash if available.
771 FilePath path;
772 if (!CommandLine::ForCurrentProcess()->HasSwitch(
773 switches::kDisableInternalFlash) &&
774 PathService::Get(chrome::FILE_FLASH_PLUGIN, &path)) {
775 webkit::npapi::PluginList::Singleton()->AddExtraPluginPath(path);
776 }
777
[email protected]f1933792011-06-14 00:49:34778#if defined(OS_POSIX)
779 // Also find plugins in a user-specific plugins dir,
780 // e.g. ~/.config/chromium/Plugins.
781 FilePath user_data_dir;
782 if (PathService::Get(chrome::DIR_USER_DATA, &user_data_dir)) {
783 webkit::npapi::PluginList::Singleton()->AddExtraPluginDir(
784 user_data_dir.Append("Plugins"));
785 }
786#endif
787
[email protected]3ce02412011-03-01 12:01:15788 scoped_ptr<IOThread> thread(new IOThread(
789 local_state(), net_log_.get(), extension_event_router_forwarder_.get()));
[email protected]ab820df2008-08-26 05:55:10790 base::Thread::Options options;
791 options.message_loop_type = MessageLoop::TYPE_IO;
792 if (!thread->StartWithOptions(options))
initial.commit09911bf2008-07-26 23:55:29793 return;
794 io_thread_.swap(thread);
795}
796
797void BrowserProcessImpl::CreateFileThread() {
798 DCHECK(!created_file_thread_ && file_thread_.get() == NULL);
799 created_file_thread_ = true;
800
[email protected]ab820df2008-08-26 05:55:10801 scoped_ptr<base::Thread> thread(
[email protected]d04e7662010-10-10 22:24:48802 new BrowserProcessSubThread(BrowserThread::FILE));
[email protected]a1db3842008-09-17 22:04:06803 base::Thread::Options options;
[email protected]9e549b582009-02-05 21:13:39804#if defined(OS_WIN)
805 // On Windows, the FILE thread needs to be have a UI message loop which pumps
806 // messages in such a way that Google Update can communicate back to us.
[email protected]a1db3842008-09-17 22:04:06807 options.message_loop_type = MessageLoop::TYPE_UI;
[email protected]9e549b582009-02-05 21:13:39808#else
809 options.message_loop_type = MessageLoop::TYPE_IO;
810#endif
[email protected]a1db3842008-09-17 22:04:06811 if (!thread->StartWithOptions(options))
initial.commit09911bf2008-07-26 23:55:29812 return;
813 file_thread_.swap(thread);
814}
815
[email protected]2d14b3732011-05-10 16:48:44816#if defined(OS_CHROMEOS)
817void BrowserProcessImpl::CreateWebSocketProxyThread() {
818 DCHECK(!created_web_socket_proxy_thread_);
819 DCHECK(web_socket_proxy_thread_.get() == NULL);
820 created_web_socket_proxy_thread_ = true;
821
822 scoped_ptr<base::Thread> thread(
823 new BrowserProcessSubThread(BrowserThread::WEB_SOCKET_PROXY));
824 base::Thread::Options options;
825 options.message_loop_type = MessageLoop::TYPE_IO;
826 if (!thread->StartWithOptions(options))
827 return;
828 web_socket_proxy_thread_.swap(thread);
829}
830#endif
831
initial.commit09911bf2008-07-26 23:55:29832void BrowserProcessImpl::CreateDBThread() {
833 DCHECK(!created_db_thread_ && db_thread_.get() == NULL);
834 created_db_thread_ = true;
835
[email protected]ab820df2008-08-26 05:55:10836 scoped_ptr<base::Thread> thread(
[email protected]d04e7662010-10-10 22:24:48837 new BrowserProcessSubThread(BrowserThread::DB));
initial.commit09911bf2008-07-26 23:55:29838 if (!thread->Start())
839 return;
840 db_thread_.swap(thread);
841}
842
[email protected]914511712009-11-23 19:42:33843void BrowserProcessImpl::CreateProcessLauncherThread() {
844 DCHECK(!created_process_launcher_thread_ && !process_launcher_thread_.get());
845 created_process_launcher_thread_ = true;
846
847 scoped_ptr<base::Thread> thread(
[email protected]d04e7662010-10-10 22:24:48848 new BrowserProcessSubThread(BrowserThread::PROCESS_LAUNCHER));
[email protected]914511712009-11-23 19:42:33849 if (!thread->Start())
850 return;
851 process_launcher_thread_.swap(thread);
852}
853
[email protected]875ee822010-05-18 20:58:01854void BrowserProcessImpl::CreateCacheThread() {
855 DCHECK(!created_cache_thread_ && !cache_thread_.get());
856 created_cache_thread_ = true;
857
858 scoped_ptr<base::Thread> thread(
[email protected]75096332010-11-09 03:28:13859 new BrowserThread(BrowserThread::CACHE));
[email protected]875ee822010-05-18 20:58:01860 base::Thread::Options options;
861 options.message_loop_type = MessageLoop::TYPE_IO;
862 if (!thread->StartWithOptions(options))
863 return;
864 cache_thread_.swap(thread);
865}
866
[email protected]0b565182011-03-02 18:11:15867void BrowserProcessImpl::CreateWatchdogThread() {
868 DCHECK(!created_watchdog_thread_ && watchdog_thread_.get() == NULL);
869 created_watchdog_thread_ = true;
870
871 scoped_ptr<WatchDogThread> thread(new WatchDogThread());
872 if (!thread->Start())
873 return;
874 watchdog_thread_.swap(thread);
875}
876
initial.commit09911bf2008-07-26 23:55:29877void BrowserProcessImpl::CreateProfileManager() {
878 DCHECK(!created_profile_manager_ && profile_manager_.get() == NULL);
879 created_profile_manager_ = true;
880
[email protected]49a25632011-08-31 17:03:48881 FilePath user_data_dir;
882 PathService::Get(chrome::DIR_USER_DATA, &user_data_dir);
883 profile_manager_.reset(new ProfileManager(user_data_dir));
initial.commit09911bf2008-07-26 23:55:29884}
885
886void BrowserProcessImpl::CreateLocalState() {
887 DCHECK(!created_local_state_ && local_state_.get() == NULL);
888 created_local_state_ = true;
889
[email protected]b9636002009-03-04 00:05:25890 FilePath local_state_path;
initial.commit09911bf2008-07-26 23:55:29891 PathService::Get(chrome::FILE_LOCAL_STATE, &local_state_path);
[email protected]f2d1f612010-12-09 15:10:17892 local_state_.reset(
[email protected]fcf53572011-06-29 15:44:37893 PrefService::CreatePrefService(local_state_path, NULL, false));
[email protected]492d2142010-09-10 13:55:18894
[email protected]caf63aea2011-04-26 11:04:10895 // Initialize the prefs of the local state.
896 browser::RegisterLocalState(local_state_.get());
897
[email protected]2a7e7c152010-10-01 20:12:09898 pref_change_registrar_.Init(local_state_.get());
899
[email protected]f16b9662011-04-27 10:06:07900 print_job_manager_->InitOnUIThread(local_state_.get());
[email protected]e450fa62011-02-01 12:52:56901
902 // Initialize the notification for the default browser setting policy.
903 local_state_->RegisterBooleanPref(prefs::kDefaultBrowserSettingEnabled,
904 false);
905 if (local_state_->IsManagedPreference(prefs::kDefaultBrowserSettingEnabled)) {
906 if (local_state_->GetBoolean(prefs::kDefaultBrowserSettingEnabled))
907 ShellIntegration::SetAsDefaultBrowser();
908 }
909 pref_change_registrar_.Add(prefs::kDefaultBrowserSettingEnabled, this);
[email protected]8b08a47f2011-02-25 12:36:37910
911 // Initialize the preference for the plugin finder policy.
912 // This preference is only needed on the IO thread so make it available there.
913 local_state_->RegisterBooleanPref(prefs::kDisablePluginFinder, false);
914 plugin_finder_disabled_pref_.Init(prefs::kDisablePluginFinder,
915 local_state_.get(), NULL);
916 plugin_finder_disabled_pref_.MoveToThread(BrowserThread::IO);
[email protected]419a0572011-04-18 22:21:46917
[email protected]1f8110b2011-05-24 14:48:30918 // Initialize the disk cache location policy. This policy is not hot update-
919 // able so we need to have it when initializing the profiles.
920 local_state_->RegisterFilePathPref(prefs::kDiskCacheDir, FilePath());
921
[email protected]12c84e22011-07-11 09:35:45922 // Another policy that needs to be defined before the net subsystem is
923 // initialized is MaxConnectionsPerProxy so we do it here.
924 local_state_->RegisterIntegerPref(prefs::kMaxConnectionsPerProxy,
925 net::kDefaultMaxSocketsPerProxyServer);
926 int max_per_proxy = local_state_->GetInteger(prefs::kMaxConnectionsPerProxy);
927 net::ClientSocketPoolManager::set_max_sockets_per_proxy_server(
928 std::max(std::min(max_per_proxy, 99),
929 net::ClientSocketPoolManager::max_sockets_per_group()));
930
[email protected]b99c41c2011-04-27 15:18:48931 // This is observed by ChildProcessSecurityPolicy, which lives in content/
932 // though, so it can't register itself.
[email protected]419a0572011-04-18 22:21:46933 local_state_->RegisterListPref(prefs::kDisabledSchemes);
[email protected]b99c41c2011-04-27 15:18:48934 pref_change_registrar_.Add(prefs::kDisabledSchemes, this);
[email protected]419a0572011-04-18 22:21:46935 ApplyDisabledSchemesPolicy();
[email protected]fd6159a2010-09-03 09:38:39936}
initial.commit09911bf2008-07-26 23:55:29937
initial.commit09911bf2008-07-26 23:55:29938void BrowserProcessImpl::CreateIconManager() {
939 DCHECK(!created_icon_manager_ && icon_manager_.get() == NULL);
940 created_icon_manager_ = true;
941 icon_manager_.reset(new IconManager);
942}
943
[email protected]40ecc902009-03-16 13:42:47944void BrowserProcessImpl::CreateDevToolsManager() {
[email protected]73ee01522009-06-05 10:13:44945 DCHECK(devtools_manager_.get() == NULL);
[email protected]40ecc902009-03-16 13:42:47946 created_devtools_manager_ = true;
[email protected]f1038d832011-08-04 07:52:01947 devtools_manager_.reset(new DevToolsManager());
[email protected]40ecc902009-03-16 13:42:47948}
949
[email protected]8b8e7c92010-08-19 18:05:56950void BrowserProcessImpl::CreateSidebarManager() {
951 DCHECK(sidebar_manager_.get() == NULL);
952 created_sidebar_manager_ = true;
953 sidebar_manager_ = new SidebarManager();
954}
955
initial.commit09911bf2008-07-26 23:55:29956void BrowserProcessImpl::CreateGoogleURLTracker() {
957 DCHECK(google_url_tracker_.get() == NULL);
958 scoped_ptr<GoogleURLTracker> google_url_tracker(new GoogleURLTracker);
959 google_url_tracker_.swap(google_url_tracker);
960}
[email protected]6641bf662009-08-21 00:34:09961
[email protected]c4ff4952010-01-08 19:12:47962void BrowserProcessImpl::CreateIntranetRedirectDetector() {
963 DCHECK(intranet_redirect_detector_.get() == NULL);
964 scoped_ptr<IntranetRedirectDetector> intranet_redirect_detector(
965 new IntranetRedirectDetector);
966 intranet_redirect_detector_.swap(intranet_redirect_detector);
967}
968
[email protected]29672ab2009-10-30 03:44:03969void BrowserProcessImpl::CreateNotificationUIManager() {
970 DCHECK(notification_ui_manager_.get() == NULL);
[email protected]b0b2a3dd2011-01-06 00:30:05971 notification_ui_manager_.reset(NotificationUIManager::Create(local_state()));
972
[email protected]29672ab2009-10-30 03:44:03973 created_notification_ui_manager_ = true;
974}
975
[email protected]0b4d3382010-07-14 16:13:04976void BrowserProcessImpl::CreateTabCloseableStateWatcher() {
977 DCHECK(tab_closeable_state_watcher_.get() == NULL);
978 tab_closeable_state_watcher_.reset(TabCloseableStateWatcher::Create());
979}
980
[email protected]9e7f015f2011-05-28 00:24:25981void BrowserProcessImpl::CreateBackgroundModeManager() {
982 DCHECK(background_mode_manager_.get() == NULL);
983 background_mode_manager_.reset(
984 new BackgroundModeManager(CommandLine::ForCurrentProcess()));
985}
986
987void BrowserProcessImpl::CreateStatusTray() {
988 DCHECK(status_tray_.get() == NULL);
989 status_tray_.reset(StatusTray::Create());
990}
991
[email protected]dbeebd52010-11-16 20:34:16992void BrowserProcessImpl::CreatePrintPreviewTabController() {
993 DCHECK(print_preview_tab_controller_.get() == NULL);
994 print_preview_tab_controller_ = new printing::PrintPreviewTabController();
995}
996
[email protected]68f88b992011-05-07 02:01:39997void BrowserProcessImpl::CreateBackgroundPrintingManager() {
998 DCHECK(background_printing_manager_.get() == NULL);
999 background_printing_manager_.reset(new printing::BackgroundPrintingManager());
1000}
1001
[email protected]462a0ff2011-06-02 17:15:341002void BrowserProcessImpl::CreateSafeBrowsingService() {
1003 DCHECK(safe_browsing_service_.get() == NULL);
[email protected]8c40da62011-07-13 22:58:461004 // Set this flag to true so that we don't retry indefinitely to
1005 // create the service class if there was an error.
[email protected]462a0ff2011-06-02 17:15:341006 created_safe_browsing_service_ = true;
[email protected]4b58e7d2011-07-11 10:22:561007#if defined(ENABLE_SAFE_BROWSING)
[email protected]462a0ff2011-06-02 17:15:341008 safe_browsing_service_ = SafeBrowsingService::CreateSafeBrowsingService();
1009 safe_browsing_service_->Initialize();
[email protected]4b58e7d2011-07-11 10:22:561010#endif
[email protected]462a0ff2011-06-02 17:15:341011}
1012
[email protected]419a0572011-04-18 22:21:461013void BrowserProcessImpl::ApplyDisabledSchemesPolicy() {
1014 std::set<std::string> schemes;
[email protected]b99c41c2011-04-27 15:18:481015 const ListValue* scheme_list = local_state_->GetList(prefs::kDisabledSchemes);
1016 for (ListValue::const_iterator iter = scheme_list->begin();
1017 iter != scheme_list->end(); ++iter) {
[email protected]419a0572011-04-18 22:21:461018 std::string scheme;
1019 if ((*iter)->GetAsString(&scheme))
1020 schemes.insert(scheme);
1021 }
1022 ChildProcessSecurityPolicy::GetInstance()->RegisterDisabledSchemes(schemes);
1023}
1024
[email protected]40850a52011-05-26 22:07:351025void BrowserProcessImpl::ApplyAllowCrossOriginAuthPromptPolicy() {
1026 bool value = local_state()->GetBoolean(prefs::kAllowCrossOriginAuthPrompt);
1027 resource_dispatcher_host()->set_allow_cross_origin_auth_prompt(value);
1028}
1029
[email protected]6641bf662009-08-21 00:34:091030// The BrowserProcess object must outlive the file thread so we use traits
1031// which don't do any management.
[email protected]c56428f22010-06-16 02:17:231032DISABLE_RUNNABLE_METHOD_REFCOUNT(BrowserProcessImpl);
[email protected]6641bf662009-08-21 00:34:091033
[email protected]d55aaa132009-09-28 21:08:041034#if defined(IPC_MESSAGE_LOG_ENABLED)
1035
1036void BrowserProcessImpl::SetIPCLoggingEnabled(bool enable) {
1037 // First enable myself.
1038 if (enable)
[email protected]8e8bb6d2010-12-13 08:18:551039 IPC::Logging::GetInstance()->Enable();
[email protected]d55aaa132009-09-28 21:08:041040 else
[email protected]8e8bb6d2010-12-13 08:18:551041 IPC::Logging::GetInstance()->Disable();
[email protected]d55aaa132009-09-28 21:08:041042
1043 // Now tell subprocesses. Messages to ChildProcess-derived
1044 // processes must be done on the IO thread.
1045 io_thread()->message_loop()->PostTask
1046 (FROM_HERE,
1047 NewRunnableMethod(
1048 this,
1049 &BrowserProcessImpl::SetIPCLoggingEnabledForChildProcesses,
1050 enable));
1051
1052 // Finally, tell the renderers which don't derive from ChildProcess.
1053 // Messages to the renderers must be done on the UI (main) thread.
[email protected]019191a2009-10-02 20:37:271054 for (RenderProcessHost::iterator i(RenderProcessHost::AllHostsIterator());
1055 !i.IsAtEnd(); i.Advance())
[email protected]ff47b2962011-03-07 23:51:491056 i.GetCurrentValue()->Send(new ChildProcessMsg_SetIPCLoggingEnabled(enable));
[email protected]d55aaa132009-09-28 21:08:041057}
1058
1059// Helper for SetIPCLoggingEnabled.
1060void BrowserProcessImpl::SetIPCLoggingEnabledForChildProcesses(bool enabled) {
[email protected]d04e7662010-10-10 22:24:481061 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::IO));
[email protected]d55aaa132009-09-28 21:08:041062
[email protected]d27893f62010-07-03 05:47:421063 BrowserChildProcessHost::Iterator i; // default constr references a singleton
[email protected]34cf97d2009-09-29 22:46:111064 while (!i.Done()) {
[email protected]ff47b2962011-03-07 23:51:491065 i->Send(new ChildProcessMsg_SetIPCLoggingEnabled(enabled));
[email protected]34cf97d2009-09-29 22:46:111066 ++i;
[email protected]d55aaa132009-09-28 21:08:041067 }
1068}
1069
1070#endif // IPC_MESSAGE_LOG_ENABLED
1071
[email protected]3cdacd42010-04-30 18:55:531072// Mac is currently not supported.
1073#if (defined(OS_WIN) || defined(OS_LINUX)) && !defined(OS_CHROMEOS)
[email protected]bd48c2b02010-04-09 20:32:421074
1075bool BrowserProcessImpl::CanAutorestartForUpdate() const {
1076 // Check if browser is in the background and if it needs to be restarted to
1077 // apply a pending update.
[email protected]c10fa3952010-08-24 16:52:531078 return BrowserList::size() == 0 && BrowserList::WillKeepAlive() &&
[email protected]815856722011-04-13 17:19:191079 upgrade_util::IsUpdatePendingRestart();
[email protected]bd48c2b02010-04-09 20:32:421080}
1081
[email protected]5c08f222010-09-22 09:37:211082// Switches to add when auto-restarting Chrome.
[email protected]6c10c972010-08-11 04:15:471083const char* const kSwitchesToAddOnAutorestart[] = {
[email protected]f9a06842010-08-21 00:32:401084 switches::kNoStartupWindow
[email protected]bd48c2b02010-04-09 20:32:421085};
1086
1087void BrowserProcessImpl::RestartPersistentInstance() {
1088 CommandLine* old_cl = CommandLine::ForCurrentProcess();
[email protected]3cdacd42010-04-30 18:55:531089 scoped_ptr<CommandLine> new_cl(new CommandLine(old_cl->GetProgram()));
[email protected]bd48c2b02010-04-09 20:32:421090
1091 std::map<std::string, CommandLine::StringType> switches =
1092 old_cl->GetSwitches();
1093
[email protected]5c08f222010-09-22 09:37:211094 switches::RemoveSwitchesForAutostart(&switches);
[email protected]bd48c2b02010-04-09 20:32:421095
1096 // Append the rest of the switches (along with their values, if any)
1097 // to the new command line
1098 for (std::map<std::string, CommandLine::StringType>::const_iterator i =
1099 switches.begin(); i != switches.end(); ++i) {
1100 CommandLine::StringType switch_value = i->second;
1101 if (switch_value.length() > 0) {
[email protected]05076ba22010-07-30 05:59:571102 new_cl->AppendSwitchNative(i->first, i->second);
[email protected]bd48c2b02010-04-09 20:32:421103 } else {
[email protected]3cdacd42010-04-30 18:55:531104 new_cl->AppendSwitch(i->first);
[email protected]bd48c2b02010-04-09 20:32:421105 }
1106 }
1107
[email protected]6c10c972010-08-11 04:15:471108 // Ensure that our desired switches are set on the new process.
[email protected]5c08f222010-09-22 09:37:211109 for (size_t i = 0; i < arraysize(kSwitchesToAddOnAutorestart); ++i) {
[email protected]6c10c972010-08-11 04:15:471110 if (!new_cl->HasSwitch(kSwitchesToAddOnAutorestart[i]))
1111 new_cl->AppendSwitch(kSwitchesToAddOnAutorestart[i]);
1112 }
[email protected]bd48c2b02010-04-09 20:32:421113
[email protected]3cdacd42010-04-30 18:55:531114 DLOG(WARNING) << "Shutting down current instance of the browser.";
[email protected]bc63a072011-06-28 21:12:571115 BrowserList::AttemptExit();
[email protected]3cdacd42010-04-30 18:55:531116
1117 // Transfer ownership to Upgrade.
[email protected]815856722011-04-13 17:19:191118 upgrade_util::SetNewCommandLine(new_cl.release());
[email protected]bd48c2b02010-04-09 20:32:421119}
1120
1121void BrowserProcessImpl::OnAutoupdateTimer() {
1122 if (CanAutorestartForUpdate()) {
[email protected]3cdacd42010-04-30 18:55:531123 DLOG(WARNING) << "Detected update. Restarting browser.";
[email protected]bd48c2b02010-04-09 20:32:421124 RestartPersistentInstance();
1125 }
1126}
1127
[email protected]3cdacd42010-04-30 18:55:531128#endif // (defined(OS_WIN) || defined(OS_LINUX)) && !defined(OS_CHROMEOS)