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
|
// Copyright 2013 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chrome/browser/ui/ash/multi_user/multi_profile_support.h"
#include <set>
#include <vector>
#include "ash/public/cpp/multi_user_window_manager.h"
#include "base/metrics/histogram_macros.h"
#include "base/scoped_observation.h"
#include "base/strings/string_util.h"
#include "chrome/browser/ash/app_restore/full_restore_service.h"
#include "chrome/browser/ash/app_restore/full_restore_service_factory.h"
#include "chrome/browser/ash/floating_workspace/floating_workspace_util.h"
#include "chrome/browser/profiles/profile.h"
#include "chrome/browser/profiles/profile_manager.h"
#include "chrome/browser/ui/ash/multi_user/multi_user_util.h"
#include "chrome/browser/ui/ash/session/session_controller_client_impl.h"
#include "chrome/browser/ui/ash/session/session_util.h"
#include "chrome/browser/ui/ash/shelf/chrome_shelf_controller.h"
#include "chrome/browser/ui/browser.h"
#include "chrome/browser/ui/browser_finder.h"
#include "chrome/browser/ui/browser_list.h"
#include "chrome/browser/ui/browser_window.h"
#include "chromeos/ash/components/browser_context_helper/browser_context_helper.h"
#include "components/app_restore/full_restore_utils.h"
#include "extensions/browser/app_window/app_window.h"
#include "extensions/browser/app_window/app_window_registry.h"
#include "ui/aura/client/aura_constants.h"
#include "ui/aura/window.h"
#include "ui/base/ui_base_types.h"
// This class keeps track of all applications which were started for a user.
// When an app gets created, the window will be tagged for that user. Note
// that the destruction does not need to be tracked here since the universal
// window observer will take care of that.
class AppObserver : public extensions::AppWindowRegistry::Observer {
public:
explicit AppObserver(extensions::AppWindowRegistry* registry,
const AccountId& account_id)
: account_id_(account_id) {
app_window_registry_observer_.Observe(registry);
}
AppObserver(const AppObserver&) = delete;
AppObserver& operator=(const AppObserver&) = delete;
~AppObserver() override = default;
// AppWindowRegistry::Observer overrides:
void OnAppWindowAdded(extensions::AppWindow* app_window) override {
aura::Window* window = app_window->GetNativeWindow();
DCHECK(window);
MultiUserWindowManagerHelper::GetWindowManager()->SetWindowOwner(
window, account_id_);
}
private:
AccountId account_id_;
base::ScopedObservation<extensions::AppWindowRegistry,
extensions::AppWindowRegistry::Observer>
app_window_registry_observer_{this};
};
MultiProfileSupport::MultiProfileSupport(
ash::MultiUserWindowManager* multi_user_window_manager)
: multi_user_window_manager_(multi_user_window_manager) {
CHECK(multi_user_window_manager);
multi_user_window_manager_observation_.Observe(multi_user_window_manager);
BrowserList::AddObserver(this);
}
MultiProfileSupport::~MultiProfileSupport() {
BrowserList::RemoveObserver(this);
// Remove all app observers.
account_id_to_app_observer_.clear();
}
void MultiProfileSupport::AddUser(const AccountId& account_id) {
// AddUser must not be called twice for the same account_id.
CHECK(account_id_to_app_observer_.find(account_id) ==
account_id_to_app_observer_.end());
// This must be called after User's Profile gets ready.
Profile* profile = Profile::FromBrowserContext(
ash::BrowserContextHelper::Get()->GetBrowserContextByAccountId(
account_id));
CHECK(profile);
auto app_observer = std::make_unique<AppObserver>(
extensions::AppWindowRegistry::Get(profile), account_id);
auto* app_observer_ptr = app_observer.get();
account_id_to_app_observer_.try_emplace(account_id, std::move(app_observer));
// Account all existing application windows of this user accordingly.
const extensions::AppWindowRegistry::AppWindowList& app_windows =
extensions::AppWindowRegistry::Get(profile)->app_windows();
for (extensions::AppWindow* app_window : app_windows) {
app_observer_ptr->OnAppWindowAdded(app_window);
}
// Account all existing browser windows of this user accordingly.
for (Browser* browser : *BrowserList::GetInstance()) {
if (browser->profile()->IsSameOrParent(profile)) {
OnBrowserAdded(browser);
}
}
}
void MultiProfileSupport::OnBrowserAdded(Browser* browser) {
// A unit test (e.g. CrashRestoreComplexTest.RestoreSessionForThreeUsers) can
// come here with no valid window.
if (!browser->window() || !browser->window()->GetNativeWindow()) {
return;
}
multi_user_window_manager_->SetWindowOwner(
browser->window()->GetNativeWindow(),
multi_user_util::GetAccountIdFromProfile(browser->profile()));
}
void MultiProfileSupport::OnWindowOwnerEntryChanged(aura::Window* window,
const AccountId& account_id,
bool was_minimized,
bool teleported) {
const AccountId& owner = multi_user_window_manager_->GetWindowOwner(window);
// Browser windows don't use kAvatarIconKey. See
// BrowserNonClientFrameViewAsh::UpdateProfileIcons().
if (owner.is_valid() && !chrome::FindBrowserWithWindow(window)) {
const user_manager::User* const window_owner =
user_manager::UserManager::IsInitialized()
? user_manager::UserManager::Get()->FindUser(owner)
: nullptr;
if (window_owner && teleported) {
window->SetProperty(
aura::client::kAvatarIconKey,
new gfx::ImageSkia(GetAvatarImageForUser(window_owner)));
} else {
window->ClearProperty(aura::client::kAvatarIconKey);
}
}
}
void MultiProfileSupport::OnTransitionUserShelfToNewAccount() {
Profile* profile = ProfileManager::GetActiveUserProfile();
full_restore::SetActiveProfilePath(profile->GetPath());
// Only init full restore when floating workspace is disabled or in safe mode.
// TODO(b/312233508): Add fws test coverage for this case.
if (!ash::floating_workspace_util::ShouldHandleRestartRestore()) {
auto* full_restore_service =
ash::full_restore::FullRestoreServiceFactory::GetForProfile(profile);
if (full_restore_service) {
full_restore_service->OnTransitionedToNewActiveUser(profile);
}
}
ChromeShelfController* chrome_shelf_controller =
ChromeShelfController::instance();
// Some unit tests have no ChromeShelfController.
if (!chrome_shelf_controller) {
return;
}
chrome_shelf_controller->ActiveUserChanged(
multi_user_window_manager_->CurrentAccountId());
}
|