2017-07-27 01:19:27 +02:00
|
|
|
diff --git chrome/browser/profiles/profile_manager.cc chrome/browser/profiles/profile_manager.cc
|
2021-01-28 00:13:12 +01:00
|
|
|
index 102a4c5ce183..a6ce775156b4 100644
|
2017-07-27 01:19:27 +02:00
|
|
|
--- chrome/browser/profiles/profile_manager.cc
|
|
|
|
+++ chrome/browser/profiles/profile_manager.cc
|
2021-01-28 00:13:12 +01:00
|
|
|
@@ -390,7 +390,7 @@ ProfileManager::ProfileManager(const base::FilePath& user_data_dir)
|
2019-10-01 15:55:16 +02:00
|
|
|
registrar_.Add(this, chrome::NOTIFICATION_BROWSER_CLOSE_CANCELLED,
|
|
|
|
content::NotificationService::AllSources());
|
2017-09-06 23:40:58 +02:00
|
|
|
|
2017-07-27 01:19:27 +02:00
|
|
|
- if (ProfileShortcutManager::IsFeatureEnabled() && !user_data_dir_.empty())
|
|
|
|
+ if (!user_data_dir_.empty() && ProfileShortcutManager::IsFeatureEnabled())
|
2019-02-01 17:42:40 +01:00
|
|
|
profile_shortcut_manager_ = ProfileShortcutManager::Create(this);
|
2017-07-27 01:19:27 +02:00
|
|
|
}
|
2019-02-01 17:42:40 +01:00
|
|
|
|
2016-07-18 23:22:22 +02:00
|
|
|
diff --git chrome/browser/profiles/profile_manager.h chrome/browser/profiles/profile_manager.h
|
2021-01-28 00:13:12 +01:00
|
|
|
index 1be24b4ee39c..4288383cb2a8 100644
|
2016-07-18 23:22:22 +02:00
|
|
|
--- chrome/browser/profiles/profile_manager.h
|
|
|
|
+++ chrome/browser/profiles/profile_manager.h
|
2021-01-28 00:13:12 +01:00
|
|
|
@@ -106,7 +106,7 @@ class ProfileManager : public content::NotificationObserver,
|
2016-08-04 14:37:53 +02:00
|
|
|
// acceptable. Returns null if creation of the new profile fails.
|
|
|
|
// TODO(bauerb): Migrate calls from other code to GetProfileByPath(), then
|
|
|
|
// make this method private.
|
|
|
|
- Profile* GetProfile(const base::FilePath& profile_dir);
|
|
|
|
+ virtual Profile* GetProfile(const base::FilePath& profile_dir);
|
|
|
|
|
2020-08-29 00:39:23 +02:00
|
|
|
// Returns regular or off-the-record profile given its profile key.
|
|
|
|
static Profile* GetProfileFromProfileKey(ProfileKey* profile_key);
|
2021-01-28 00:13:12 +01:00
|
|
|
@@ -139,7 +139,7 @@ class ProfileManager : public content::NotificationObserver,
|
2016-07-18 23:22:22 +02:00
|
|
|
|
|
|
|
// Returns true if the profile pointer is known to point to an existing
|
|
|
|
// profile.
|
|
|
|
- bool IsValidProfile(const void* profile);
|
|
|
|
+ virtual bool IsValidProfile(const void* profile);
|
|
|
|
|
|
|
|
// Returns the directory where the first created profile is stored,
|
|
|
|
// relative to the user data directory currently in use.
|
2021-01-28 00:13:12 +01:00
|
|
|
@@ -148,7 +148,7 @@ class ProfileManager : public content::NotificationObserver,
|
2016-11-07 20:14:09 +01:00
|
|
|
// Get the Profile last used (the Profile to which owns the most recently
|
|
|
|
// focused window) with this Chrome build. If no signed profile has been
|
|
|
|
// stored in Local State, hand back the Default profile.
|
|
|
|
- Profile* GetLastUsedProfile(const base::FilePath& user_data_dir);
|
|
|
|
+ virtual Profile* GetLastUsedProfile(const base::FilePath& user_data_dir);
|
|
|
|
|
|
|
|
// Get the path of the last used profile, or if that's undefined, the default
|
|
|
|
// profile.
|
2019-09-25 15:59:51 +02:00
|
|
|
diff --git chrome/browser/profiles/renderer_updater.cc chrome/browser/profiles/renderer_updater.cc
|
2021-01-28 00:13:12 +01:00
|
|
|
index 04bbd816692b..1af61cacc5cb 100644
|
2019-09-25 15:59:51 +02:00
|
|
|
--- chrome/browser/profiles/renderer_updater.cc
|
|
|
|
+++ chrome/browser/profiles/renderer_updater.cc
|
2021-01-28 00:13:12 +01:00
|
|
|
@@ -8,6 +8,7 @@
|
2019-09-25 15:59:51 +02:00
|
|
|
|
|
|
|
#include "base/bind.h"
|
2021-01-28 00:13:12 +01:00
|
|
|
#include "build/chromeos_buildflags.h"
|
2020-07-04 04:51:17 +02:00
|
|
|
+#include "cef/libcef/features/runtime.h"
|
2019-09-25 15:59:51 +02:00
|
|
|
#include "chrome/browser/content_settings/host_content_settings_map_factory.h"
|
|
|
|
#include "chrome/browser/profiles/profile.h"
|
|
|
|
#include "chrome/browser/signin/identity_manager_factory.h"
|
2021-01-28 00:13:12 +01:00
|
|
|
@@ -58,8 +59,12 @@ void GetGuestViewDefaultContentSettingRules(
|
2019-09-25 15:59:51 +02:00
|
|
|
|
|
|
|
RendererUpdater::RendererUpdater(Profile* profile)
|
|
|
|
: profile_(profile), identity_manager_observer_(this) {
|
2020-07-04 04:51:17 +02:00
|
|
|
+ if (cef::IsAlloyRuntimeEnabled()) {
|
|
|
|
+ identity_manager_ = nullptr;
|
|
|
|
+ } else {
|
2021-01-28 00:13:12 +01:00
|
|
|
identity_manager_ = IdentityManagerFactory::GetForProfile(profile);
|
|
|
|
identity_manager_observer_.Add(identity_manager_);
|
2020-07-04 04:51:17 +02:00
|
|
|
+ }
|
2021-01-28 00:13:12 +01:00
|
|
|
#if BUILDFLAG(IS_CHROMEOS_ASH)
|
2019-09-25 15:59:51 +02:00
|
|
|
oauth2_login_manager_ =
|
|
|
|
chromeos::OAuth2LoginManagerFactory::GetForProfile(profile_);
|