1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301
|
// Copyright 2012 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
// This class gathers state related to a single user profile.
#ifndef CHROME_BROWSER_PROFILES_PROFILE_IMPL_H_
#define CHROME_BROWSER_PROFILES_PROFILE_IMPL_H_
#include <map>
#include <memory>
#include <string>
#include <vector>
#include "base/files/file_path.h"
#include "base/gtest_prod_util.h"
#include "base/memory/raw_ptr.h"
#include "base/memory/scoped_refptr.h"
#include "base/time/time.h"
#include "base/timer/timer.h"
#include "build/build_config.h"
#include "build/chromeos_buildflags.h"
#include "chrome/browser/profiles/profile.h"
#include "chrome/browser/ui/zoom/chrome_zoom_level_prefs.h"
#include "chrome/common/buildflags.h"
#include "components/keyed_service/core/simple_factory_key.h"
#include "components/prefs/pref_change_registrar.h"
#include "content/public/browser/host_zoom_map.h"
#include "extensions/buildflags/buildflags.h"
class PrefService;
#if BUILDFLAG(IS_CHROMEOS)
namespace ash {
class LocaleChangeGuard;
class Preferences;
} // namespace ash
#endif
namespace base {
class SequencedTaskRunner;
}
namespace policy {
class ConfigurationPolicyProvider;
class ProfilePolicyConnector;
class ProfileCloudPolicyManager;
} // namespace policy
namespace sync_preferences {
class PrefServiceSyncable;
}
namespace user_prefs {
class PrefRegistrySyncable;
}
// The default profile implementation.
class ProfileImpl : public Profile {
public:
ProfileImpl(const ProfileImpl&) = delete;
ProfileImpl& operator=(const ProfileImpl&) = delete;
~ProfileImpl() override;
static void RegisterProfilePrefs(user_prefs::PrefRegistrySyncable* registry);
// content::BrowserContext implementation:
std::unique_ptr<content::ZoomLevelDelegate> CreateZoomLevelDelegate(
const base::FilePath& partition_path) override;
content::DownloadManagerDelegate* GetDownloadManagerDelegate() override;
content::BrowserPluginGuestManager* GetGuestManager() override;
storage::SpecialStoragePolicy* GetSpecialStoragePolicy() override;
content::PlatformNotificationService* GetPlatformNotificationService()
override;
content::PushMessagingService* GetPushMessagingService() override;
content::StorageNotificationService* GetStorageNotificationService() override;
content::SSLHostStateDelegate* GetSSLHostStateDelegate() override;
content::BrowsingDataRemoverDelegate* GetBrowsingDataRemoverDelegate()
override;
content::PermissionControllerDelegate* GetPermissionControllerDelegate()
override;
content::ClientHintsControllerDelegate* GetClientHintsControllerDelegate()
override;
content::BackgroundFetchDelegate* GetBackgroundFetchDelegate() override;
content::BackgroundSyncController* GetBackgroundSyncController() override;
content::ReduceAcceptLanguageControllerDelegate*
GetReduceAcceptLanguageControllerDelegate() override;
std::unique_ptr<download::InProgressDownloadManager>
RetrieveInProgressDownloadManager() override;
content::FileSystemAccessPermissionContext*
GetFileSystemAccessPermissionContext() override;
content::ContentIndexProvider* GetContentIndexProvider() override;
content::FederatedIdentityApiPermissionContextDelegate*
GetFederatedIdentityApiPermissionContext() override;
content::FederatedIdentityAutoReauthnPermissionContextDelegate*
GetFederatedIdentityAutoReauthnPermissionContext() override;
content::FederatedIdentityPermissionContextDelegate*
GetFederatedIdentityPermissionContext() override;
content::KAnonymityServiceDelegate* GetKAnonymityServiceDelegate() override;
content::OriginTrialsControllerDelegate* GetOriginTrialsControllerDelegate()
override;
// Profile implementation:
scoped_refptr<base::SequencedTaskRunner> GetIOTaskRunner() override;
// Note that this implementation returns the Google-services username, if any,
// not the Chrome user's display name.
std::string GetProfileUserName() const override;
base::FilePath GetPath() override;
base::Time GetCreationTime() const override;
base::FilePath GetPath() const override;
Profile* GetOffTheRecordProfile(const OTRProfileID& otr_profile_id,
bool create_if_needed) override;
std::vector<Profile*> GetAllOffTheRecordProfiles() override;
void DestroyOffTheRecordProfile(Profile* otr_profile) override;
bool HasOffTheRecordProfile(const OTRProfileID& otr_profile_id) override;
bool HasAnyOffTheRecordProfile() override;
Profile* GetOriginalProfile() override;
const Profile* GetOriginalProfile() const override;
bool IsChild() const override;
bool AllowsBrowserWindows() const override;
ExtensionSpecialStoragePolicy* GetExtensionSpecialStoragePolicy() override;
PrefService* GetPrefs() override;
const PrefService* GetPrefs() const override;
ChromeZoomLevelPrefs* GetZoomLevelPrefs() override;
PrefService* GetReadOnlyOffTheRecordPrefs() override;
policy::SchemaRegistryService* GetPolicySchemaRegistryService() override;
#if BUILDFLAG(IS_CHROMEOS)
policy::UserCloudPolicyManagerAsh* GetUserCloudPolicyManagerAsh() override;
#else
policy::UserCloudPolicyManager* GetUserCloudPolicyManager() override;
policy::ProfileCloudPolicyManager* GetProfileCloudPolicyManager() override;
#endif // BUILDFLAG(IS_CHROMEOS)
policy::CloudPolicyManager* GetCloudPolicyManager() override;
policy::ProfilePolicyConnector* GetProfilePolicyConnector() override;
const policy::ProfilePolicyConnector* GetProfilePolicyConnector()
const override;
scoped_refptr<network::SharedURLLoaderFactory> GetURLLoaderFactory() override;
bool IsSameOrParent(Profile* profile) override;
base::Time GetStartTime() const override;
ProfileKey* GetProfileKey() const override;
base::FilePath last_selected_directory() override;
void set_last_selected_directory(const base::FilePath& path) override;
GURL GetHomePage() override;
bool WasCreatedByVersionOrLater(const std::string& version) override;
bool ShouldRestoreOldSessionCookies() override;
bool ShouldPersistSessionCookies() const override;
#if BUILDFLAG(IS_CHROMEOS)
void ChangeAppLocale(const std::string& locale, AppLocaleChangedVia) override;
void OnLogin() override;
void InitChromeOSPreferences() override;
#endif // BUILDFLAG(IS_CHROMEOS)
bool IsNewProfile() const override;
void SetCreationTimeForTesting(base::Time creation_time) override;
void RecordPrimaryMainFrameNavigation() override {}
protected:
// Profile implementation.
bool IsSignedIn() override;
private:
friend class Profile;
FRIEND_TEST_ALL_PREFIXES(StartupBrowserCreatorTest,
ProfilesLaunchedAfterCrash);
FRIEND_TEST_ALL_PREFIXES(ProfileBrowserTest, DISABLED_ProfileReadmeCreated);
FRIEND_TEST_ALL_PREFIXES(ProfileBrowserTest,
ProfileDeletedBeforeReadmeCreated);
FRIEND_TEST_ALL_PREFIXES(ProfileBrowserTest, DiskCacheDirOverride);
ProfileImpl(const base::FilePath& path,
Delegate* delegate,
CreateMode create_mode,
base::Time path_creation_time,
scoped_refptr<base::SequencedTaskRunner> io_task_runner);
#if BUILDFLAG(IS_ANDROID)
// Takes the ownership of the pre-created PrefService and other objects if
// they have been created.
void TakePrefsFromStartupData();
#endif
// Creates |prefs| from scratch in normal startup.
void LoadPrefsForNormalStartup(bool async_prefs);
// Does final initialization. Should be called after prefs were loaded.
void DoFinalInit(CreateMode create_mode);
// Switch locale (when possible) and proceed to OnLocaleReady().
void OnPrefsLoaded(CreateMode create_mode, bool success);
// Does final prefs initialization and calls Init().
void OnLocaleReady(CreateMode create_mode);
#if BUILDFLAG(ENABLE_SESSION_SERVICE)
void StopCreateSessionServiceTimer();
void EnsureSessionServiceCreated();
#endif
// Updates the ProfileAttributesStorage with the data from this profile.
void UpdateSupervisedUserIdInStorage();
void UpdateNameInStorage();
void UpdateAvatarInStorage();
void UpdateIsEphemeralInStorage();
// Called after a profile is initialized, to record 'one per profile creation'
// metrics relating to user prefs.
void RecordPrefValuesAfterProfileInitialization();
policy::ConfigurationPolicyProvider* configuration_policy_provider();
base::FilePath path_;
base::Time path_creation_time_;
// Task runner used for file access in the profile path.
scoped_refptr<base::SequencedTaskRunner> io_task_runner_;
// !!! BIG HONKING WARNING !!!
// The order of the members below is important. Do not change it unless
// you know what you're doing. Also, if adding a new member here make sure
// that the declaration occurs AFTER things it depends on as destruction
// happens in reverse order of declaration.
// TODO(mnissler, joaodasilva): The |profile_policy_connector_| provides the
// PolicyService that the |prefs_| depend on, and must outlive |prefs_|. This
// can be removed once |prefs_| becomes a KeyedService too.
// - |prefs_| depends on |profile_policy_connector_|
// - |profile_policy_connector_| depends on configuration_policy_provider(),
// which can be:
// - |user_cloud_policy_manager_|;
// - |user_cloud_policy_manager_ash_|;
// - configuration_policy_provider() depends on |schema_registry_service_|
std::unique_ptr<policy::SchemaRegistryService> schema_registry_service_;
// configuration_policy_provider() is either of these, or nullptr in some
// tests.
#if BUILDFLAG(IS_CHROMEOS)
std::unique_ptr<policy::UserCloudPolicyManagerAsh>
user_cloud_policy_manager_ash_;
#else
std::unique_ptr<policy::UserCloudPolicyManager> user_cloud_policy_manager_;
std::unique_ptr<policy::ProfileCloudPolicyManager>
profile_cloud_policy_manager_;
#endif
std::unique_ptr<policy::ProfilePolicyConnector> profile_policy_connector_;
// Keep `prefs_` on top for destruction order because `dummy_otr_prefs_`,
// `pref_change_registrar_` and others store pointers to `prefs_` and shall be
// destructed first.
scoped_refptr<user_prefs::PrefRegistrySyncable> pref_registry_;
std::unique_ptr<sync_preferences::PrefServiceSyncable> prefs_;
std::unique_ptr<sync_preferences::PrefServiceSyncable> dummy_otr_prefs_;
PrefChangeRegistrar pref_change_registrar_;
#if BUILDFLAG(ENABLE_EXTENSIONS_CORE)
scoped_refptr<ExtensionSpecialStoragePolicy>
extension_special_storage_policy_;
#endif
#if BUILDFLAG(ENABLE_SESSION_SERVICE)
base::OneShotTimer create_session_service_timer_;
#endif
std::map<OTRProfileID, std::unique_ptr<Profile>> otr_profiles_;
// See GetStartTime for details.
base::Time start_time_;
// The key to index KeyedService instances created by
// SimpleKeyedServiceFactory.
std::unique_ptr<ProfileKey> key_;
#if BUILDFLAG(IS_CHROMEOS)
std::unique_ptr<ash::Preferences> chromeos_preferences_;
std::unique_ptr<ash::LocaleChangeGuard> locale_change_guard_;
#endif
// STOP!!!! DO NOT ADD ANY MORE ITEMS HERE!!!!
//
// Instead, make your Service/Manager/whatever object you're hanging off the
// Profile use our new BrowserContextKeyedServiceFactory system instead.
// You can find the design document here:
//
// https://sites.google.com/a/chromium.org/dev/developers/design-documents/profile-architecture
//
// and you can read the raw headers here:
//
// components/keyed_service/content/browser_context_dependency_manager.*
// components/keyed_service/core/keyed_service.h
// components/keyed_service/content/browser_context_keyed_service_factory.*
raw_ptr<Profile::Delegate> delegate_;
};
#endif // CHROME_BROWSER_PROFILES_PROFILE_IMPL_H_
|