1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #include "chrome/browser/ui/ash/chrome_shell_delegate.h"
7 #include "apps/shell_window.h"
8 #include "apps/shell_window_registry.h"
9 #include "ash/host/root_window_host_factory.h"
10 #include "ash/magnifier/magnifier_constants.h"
11 #include "ash/wm/window_state.h"
12 #include "ash/wm/window_util.h"
13 #include "base/command_line.h"
14 #include "chrome/browser/app_mode/app_mode_utils.h"
15 #include "chrome/browser/lifetime/application_lifetime.h"
16 #include "chrome/browser/profiles/profile_manager.h"
17 #include "chrome/browser/ui/app_list/app_list_service.h"
18 #include "chrome/browser/ui/app_list/app_list_view_delegate.h"
19 #include "chrome/browser/ui/ash/app_list/app_list_controller_ash.h"
20 #include "chrome/browser/ui/ash/ash_keyboard_controller_proxy.h"
21 #include "chrome/browser/ui/ash/launcher/chrome_launcher_controller.h"
22 #include "chrome/browser/ui/ash/launcher/launcher_context_menu.h"
23 #include "chrome/browser/ui/ash/user_action_handler.h"
24 #include "chrome/browser/ui/browser_commands.h"
25 #include "chrome/common/chrome_switches.h"
26 #include "grit/chromium_strings.h"
27 #include "grit/generated_resources.h"
28 #include "ui/base/l10n/l10n_util.h"
30 #if defined(OS_CHROMEOS)
31 #include "chrome/browser/chromeos/accessibility/accessibility_manager.h"
32 #include "chrome/browser/chromeos/display/display_configuration_observer.h"
33 #include "chrome/browser/chromeos/login/user_manager.h"
37 ChromeShellDelegate
* ChromeShellDelegate::instance_
= NULL
;
39 ChromeShellDelegate::ChromeShellDelegate()
40 : shelf_delegate_(NULL
) {
45 ChromeShellDelegate::~ChromeShellDelegate() {
46 if (instance_
== this)
50 bool ChromeShellDelegate::IsMultiProfilesEnabled() const {
51 // TODO(skuhne): There is a function named profiles::IsMultiProfilesEnabled
52 // which does similar things - but it is not the same. We should investigate
53 // if these two could be folded together.
54 if (!CommandLine::ForCurrentProcess()->HasSwitch(switches::kMultiProfiles
))
56 #if defined(OS_CHROMEOS)
57 // If there is a user manager, we need to see that we can at least have 2
58 // simultaneous users to allow this feature.
59 if (!chromeos::UserManager::IsInitialized())
61 size_t admitted_users_to_be_added
=
62 chromeos::UserManager::Get()->GetUsersAdmittedForMultiProfile().size();
63 size_t logged_in_users
=
64 chromeos::UserManager::Get()->GetLoggedInUsers().size();
65 if (!logged_in_users
) {
66 // The shelf gets created on the login screen and as such we have to create
67 // all multi profile items of the the system tray menu before the user logs
68 // in. For special cases like Kiosk mode and / or guest mode this isn't a
69 // problem since either the browser gets restarted and / or the flag is not
70 // allowed, but for an "ephermal" user (see crbug.com/312324) it is not
71 // decided yet if he could add other users to his session or not.
72 // TODO(skuhne): As soon as the issue above needs to be resolved, this logic
76 if (admitted_users_to_be_added
+ logged_in_users
<= 1)
82 bool ChromeShellDelegate::IsIncognitoAllowed() const {
83 #if defined(OS_CHROMEOS)
84 return chromeos::AccessibilityManager::Get()->IsIncognitoAllowed();
89 bool ChromeShellDelegate::IsRunningInForcedAppMode() const {
90 return chrome::IsRunningInForcedAppMode();
93 void ChromeShellDelegate::Exit() {
94 chrome::AttemptUserExit();
97 content::BrowserContext
* ChromeShellDelegate::GetActiveBrowserContext() {
98 #if defined(OS_CHROMEOS)
99 DCHECK(chromeos::UserManager::Get()->GetLoggedInUsers().size());
101 return ProfileManager::GetActiveUserProfile();
104 app_list::AppListViewDelegate
*
105 ChromeShellDelegate::CreateAppListViewDelegate() {
106 DCHECK(ash::Shell::HasInstance());
107 // Shell will own the created delegate, and the delegate will own
109 return new AppListViewDelegate(
110 Profile::FromBrowserContext(GetActiveBrowserContext()),
111 AppListService::Get(chrome::HOST_DESKTOP_TYPE_ASH
)->
112 GetControllerDelegate());
115 ash::ShelfDelegate
* ChromeShellDelegate::CreateShelfDelegate(
116 ash::ShelfModel
* model
) {
117 // TODO(oshima): This is currently broken with multiple launchers.
118 // Refactor so that there is just one launcher delegate in the
120 if (!shelf_delegate_
) {
121 shelf_delegate_
= ChromeLauncherController::CreateInstance(NULL
, model
);
122 shelf_delegate_
->Init();
124 return shelf_delegate_
;
127 aura::client::UserActionClient
* ChromeShellDelegate::CreateUserActionClient() {
128 return new UserActionHandler
;
131 ui::MenuModel
* ChromeShellDelegate::CreateContextMenu(
133 ash::ShelfItemDelegate
* item_delegate
,
134 ash::LauncherItem
* item
) {
135 DCHECK(shelf_delegate_
);
136 // Don't show context menu for exclusive app runtime mode.
137 if (chrome::IsRunningInAppMode())
140 if (item_delegate
&& item
)
141 return new LauncherContextMenu(shelf_delegate_
, item_delegate
, item
, root
);
143 return new LauncherContextMenu(shelf_delegate_
, root
);
146 ash::WindowTreeHostFactory
* ChromeShellDelegate::CreateWindowTreeHostFactory() {
147 return ash::WindowTreeHostFactory::Create();
150 base::string16
ChromeShellDelegate::GetProductName() const {
151 return l10n_util::GetStringUTF16(IDS_PRODUCT_NAME
);
154 keyboard::KeyboardControllerProxy
*
155 ChromeShellDelegate::CreateKeyboardControllerProxy() {
156 return new AshKeyboardControllerProxy();