blob: f9b4655402afffdf0233e9f03ae972856083c478 (
plain)
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
|
// Copyright 2013 The Chromium Authors. All rights reserved.
// 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_user_util.h"
#include <vector>
#include "base/strings/string_util.h"
#include "build/build_config.h"
#include "chrome/browser/browser_process.h"
#include "chrome/browser/profiles/profile.h"
#include "chrome/browser/profiles/profile_manager.h"
#include "components/signin/core/account_id/account_id.h"
#include "google_apis/gaia/gaia_auth_util.h"
#if defined(OS_CHROMEOS)
#include "chrome/browser/ui/ash/multi_user/multi_user_window_manager.h"
#include "components/user_manager/user_manager.h"
#endif
namespace multi_user_util {
AccountId GetAccountIdFromProfile(Profile* profile) {
return GetAccountIdFromEmail(
profile->GetOriginalProfile()->GetProfileUserName());
}
AccountId GetAccountIdFromEmail(const std::string& email) {
// |email| and profile name could be empty if not yet logged in or guest mode.
return email.empty() ? EmptyAccountId()
: AccountId::FromUserEmail(gaia::CanonicalizeEmail(
gaia::SanitizeEmail(email)));
}
Profile* GetProfileFromAccountId(const AccountId& account_id) {
// Unit tests can end up here without a |g_browser_process|.
if (!g_browser_process || !g_browser_process->profile_manager())
return NULL;
std::vector<Profile*> profiles =
g_browser_process->profile_manager()->GetLoadedProfiles();
std::vector<Profile*>::const_iterator profile_iterator = profiles.begin();
for (; profile_iterator != profiles.end(); ++profile_iterator) {
if (GetAccountIdFromProfile(*profile_iterator) == account_id)
return *profile_iterator;
}
return NULL;
}
Profile* GetProfileFromWindow(aura::Window* window) {
#if defined(OS_CHROMEOS)
chrome::MultiUserWindowManager* manager =
chrome::MultiUserWindowManager::GetInstance();
// We might come here before the manager got created - or in a unit test.
if (!manager)
return nullptr;
const AccountId account_id = manager->GetUserPresentingWindow(window);
return account_id.is_valid() ? GetProfileFromAccountId(account_id) : nullptr;
#else
return nullptr;
#endif
}
bool IsProfileFromActiveUser(Profile* profile) {
#if defined(OS_CHROMEOS)
return GetAccountIdFromProfile(profile) ==
user_manager::UserManager::Get()->GetActiveUser()->GetAccountId();
#else
// In non Chrome OS configurations this will be always true since this only
// makes sense in separate desktop mode.
return true;
#endif
}
const AccountId GetCurrentAccountId() {
#if defined(OS_CHROMEOS)
const user_manager::User* user =
user_manager::UserManager::Get()->GetActiveUser();
// In unit tests user login phase is usually skipped.
if (user)
return user->GetAccountId();
#endif
return EmptyAccountId();
}
// Move the window to the current user's desktop.
void MoveWindowToCurrentDesktop(aura::Window* window) {
#if defined(OS_CHROMEOS)
if (!chrome::MultiUserWindowManager::GetInstance()->IsWindowOnDesktopOfUser(
window, GetCurrentAccountId())) {
chrome::MultiUserWindowManager::GetInstance()->ShowWindowForUser(
window, GetCurrentAccountId());
}
#endif
}
} // namespace multi_user_util
|