Chromium Code Reviews

Side by Side Diff: chrome/browser/profile_impl.cc

Issue 5213002: Fix for Bug 50726 "Save extension list and "winning" prefs from extensions" (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Addressed Mattias' comments Created 10 years ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "chrome/browser/profile_impl.h" 5 #include "chrome/browser/profile_impl.h"
6 6
7 #include "app/resource_bundle.h" 7 #include "app/resource_bundle.h"
8 #include "base/command_line.h" 8 #include "base/command_line.h"
9 #include "base/environment.h" 9 #include "base/environment.h"
10 #include "base/file_path.h" 10 #include "base/file_path.h"
(...skipping 17 matching lines...)
28 #include "chrome/browser/chrome_blob_storage_context.h" 28 #include "chrome/browser/chrome_blob_storage_context.h"
29 #include "chrome/browser/content_settings/host_content_settings_map.h" 29 #include "chrome/browser/content_settings/host_content_settings_map.h"
30 #include "chrome/browser/dom_ui/ntp_resource_cache.h" 30 #include "chrome/browser/dom_ui/ntp_resource_cache.h"
31 #include "chrome/browser/download/download_manager.h" 31 #include "chrome/browser/download/download_manager.h"
32 #include "chrome/browser/extensions/default_apps.h" 32 #include "chrome/browser/extensions/default_apps.h"
33 #include "chrome/browser/extensions/extension_devtools_manager.h" 33 #include "chrome/browser/extensions/extension_devtools_manager.h"
34 #include "chrome/browser/extensions/extension_error_reporter.h" 34 #include "chrome/browser/extensions/extension_error_reporter.h"
35 #include "chrome/browser/extensions/extension_info_map.h" 35 #include "chrome/browser/extensions/extension_info_map.h"
36 #include "chrome/browser/extensions/extension_event_router.h" 36 #include "chrome/browser/extensions/extension_event_router.h"
37 #include "chrome/browser/extensions/extension_message_service.h" 37 #include "chrome/browser/extensions/extension_message_service.h"
38 #include "chrome/browser/extensions/extension_pref_store.h"
38 #include "chrome/browser/extensions/extension_process_manager.h" 39 #include "chrome/browser/extensions/extension_process_manager.h"
39 #include "chrome/browser/extensions/extensions_service.h" 40 #include "chrome/browser/extensions/extensions_service.h"
40 #include "chrome/browser/extensions/user_script_master.h" 41 #include "chrome/browser/extensions/user_script_master.h"
41 #include "chrome/browser/favicon_service.h" 42 #include "chrome/browser/favicon_service.h"
42 #include "chrome/browser/file_system/browser_file_system_context.h" 43 #include "chrome/browser/file_system/browser_file_system_context.h"
43 #include "chrome/browser/find_bar_state.h" 44 #include "chrome/browser/find_bar_state.h"
44 #include "chrome/browser/geolocation/geolocation_content_settings_map.h" 45 #include "chrome/browser/geolocation/geolocation_content_settings_map.h"
45 #include "chrome/browser/geolocation/geolocation_permission_context.h" 46 #include "chrome/browser/geolocation/geolocation_permission_context.h"
46 #include "chrome/browser/history/history.h" 47 #include "chrome/browser/history/history.h"
47 #include "chrome/browser/history/top_sites.h" 48 #include "chrome/browser/history/top_sites.h"
(...skipping 220 matching lines...)
268 TimeDelta::FromMilliseconds(kCreateSessionServiceDelayMS), this, 269 TimeDelta::FromMilliseconds(kCreateSessionServiceDelayMS), this,
269 &ProfileImpl::EnsureSessionServiceCreated); 270 &ProfileImpl::EnsureSessionServiceCreated);
270 271
271 PrefService* prefs = GetPrefs(); 272 PrefService* prefs = GetPrefs();
272 pref_change_registrar_.Init(prefs); 273 pref_change_registrar_.Init(prefs);
273 pref_change_registrar_.Add(prefs::kSpellCheckDictionary, this); 274 pref_change_registrar_.Add(prefs::kSpellCheckDictionary, this);
274 pref_change_registrar_.Add(prefs::kEnableSpellCheck, this); 275 pref_change_registrar_.Add(prefs::kEnableSpellCheck, this);
275 pref_change_registrar_.Add(prefs::kEnableAutoSpellCorrect, this); 276 pref_change_registrar_.Add(prefs::kEnableAutoSpellCorrect, this);
276 pref_change_registrar_.Add(prefs::kClearSiteDataOnExit, this); 277 pref_change_registrar_.Add(prefs::kClearSiteDataOnExit, this);
277 278
279 // Ensure that preferences set by extensions are restored in the profile
280 // as early as possible. The constructor takes care of that.
281 extension_prefs_.reset(new ExtensionPrefs(
282 this,
283 GetPath().AppendASCII(ExtensionsService::kInstallDirectoryName)));
284
278 // Convert active labs into switches. Modifies the current command line. 285 // Convert active labs into switches. Modifies the current command line.
279 about_flags::ConvertFlagsToSwitches(prefs, CommandLine::ForCurrentProcess()); 286 about_flags::ConvertFlagsToSwitches(prefs, CommandLine::ForCurrentProcess());
280 287
281 // It would be nice to use PathService for fetching this directory, but 288 // It would be nice to use PathService for fetching this directory, but
282 // the cache directory depends on the profile directory, which isn't available 289 // the cache directory depends on the profile directory, which isn't available
283 // to PathService. 290 // to PathService.
284 chrome::GetUserCacheDirectory(path_, &base_cache_path_); 291 chrome::GetUserCacheDirectory(path_, &base_cache_path_);
285 file_util::CreateDirectory(base_cache_path_); 292 file_util::CreateDirectory(base_cache_path_);
286 293
287 // Listen for theme installations from our original profile. 294 // Listen for theme installations from our original profile.
(...skipping 58 matching lines...)
346 353
347 FilePath script_dir; // Don't look for user scripts in any directory. 354 FilePath script_dir; // Don't look for user scripts in any directory.
348 // TODO(aa): We should just remove this functionality, 355 // TODO(aa): We should just remove this functionality,
349 // since it isn't used anymore. 356 // since it isn't used anymore.
350 user_script_master_ = new UserScriptMaster(script_dir, this); 357 user_script_master_ = new UserScriptMaster(script_dir, this);
351 358
352 extensions_service_ = new ExtensionsService( 359 extensions_service_ = new ExtensionsService(
353 this, 360 this,
354 CommandLine::ForCurrentProcess(), 361 CommandLine::ForCurrentProcess(),
355 GetPath().AppendASCII(ExtensionsService::kInstallDirectoryName), 362 GetPath().AppendASCII(ExtensionsService::kInstallDirectoryName),
363 extension_prefs_.get(),
356 true); 364 true);
357 365
358 RegisterComponentExtensions(); 366 RegisterComponentExtensions();
359 extensions_service_->Init(); 367 extensions_service_->Init();
360 InstallDefaultApps(); 368 InstallDefaultApps();
361 369
362 // Load any extensions specified with --load-extension. 370 // Load any extensions specified with --load-extension.
363 if (command_line->HasSwitch(switches::kLoadExtension)) { 371 if (command_line->HasSwitch(switches::kLoadExtension)) {
364 FilePath path = command_line->GetSwitchValuePath(switches::kLoadExtension); 372 FilePath path = command_line->GetSwitchValuePath(switches::kLoadExtension);
365 extensions_service_->LoadExtension(path); 373 extensions_service_->LoadExtension(path);
(...skipping 313 matching lines...)
679 // Make sure we save to disk that the session has opened. 687 // Make sure we save to disk that the session has opened.
680 prefs_->ScheduleSavePersistentPrefs(); 688 prefs_->ScheduleSavePersistentPrefs();
681 689
682 DCHECK(!net_pref_observer_.get()); 690 DCHECK(!net_pref_observer_.get());
683 net_pref_observer_.reset(new NetPrefObserver(prefs_.get())); 691 net_pref_observer_.reset(new NetPrefObserver(prefs_.get()));
684 } 692 }
685 693
686 return prefs_.get(); 694 return prefs_.get();
687 } 695 }
688 696
697 PrefStore* ProfileImpl::GetExtensionPrefStore() {
698 return extension_pref_store_;
699 }
700
701 void ProfileImpl::SetExtensionPrefStore(PrefStore* extension_pref_store) {
702 extension_pref_store_ = extension_pref_store;
703 }
704
689 FilePath ProfileImpl::GetPrefFilePath() { 705 FilePath ProfileImpl::GetPrefFilePath() {
690 FilePath pref_file_path = path_; 706 FilePath pref_file_path = path_;
691 pref_file_path = pref_file_path.Append(chrome::kPreferencesFilename); 707 pref_file_path = pref_file_path.Append(chrome::kPreferencesFilename);
692 return pref_file_path; 708 return pref_file_path;
693 } 709 }
694 710
695 URLRequestContextGetter* ProfileImpl::GetRequestContext() { 711 URLRequestContextGetter* ProfileImpl::GetRequestContext() {
696 if (!request_context_) { 712 if (!request_context_) {
697 FilePath cookie_path = GetPath(); 713 FilePath cookie_path = GetPath();
698 cookie_path = cookie_path.Append(chrome::kCookieFilename); 714 cookie_path = cookie_path.Append(chrome::kCookieFilename);
(...skipping 632 matching lines...)
1331 return chromeos_proxy_config_service_impl_; 1347 return chromeos_proxy_config_service_impl_;
1332 } 1348 }
1333 #endif // defined(OS_CHROMEOS) 1349 #endif // defined(OS_CHROMEOS)
1334 1350
1335 PrefProxyConfigTracker* ProfileImpl::GetProxyConfigTracker() { 1351 PrefProxyConfigTracker* ProfileImpl::GetProxyConfigTracker() {
1336 if (!pref_proxy_config_tracker_) 1352 if (!pref_proxy_config_tracker_)
1337 pref_proxy_config_tracker_ = new PrefProxyConfigTracker(GetPrefs()); 1353 pref_proxy_config_tracker_ = new PrefProxyConfigTracker(GetPrefs());
1338 1354
1339 return pref_proxy_config_tracker_; 1355 return pref_proxy_config_tracker_;
1340 } 1356 }
OLDNEW

Powered by Google App Engine