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
|
// 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/chrome_shell_delegate.h"
#include <vector>
#include "ash/accessibility_delegate.h"
#include "ash/media_delegate.h"
#include "ash/wm/window_util.h"
#include "base/command_line.h"
#include "chrome/browser/accessibility/accessibility_events.h"
#include "chrome/browser/browser_process.h"
#include "chrome/browser/chrome_notification_types.h"
#include "chrome/browser/prefs/session_startup_pref.h"
#include "chrome/browser/profiles/profile.h"
#include "chrome/browser/profiles/profile_manager.h"
#include "chrome/browser/signin/signin_error_notifier_factory_ash.h"
#include "chrome/browser/sync/sync_error_notifier_factory_ash.h"
#include "chrome/browser/ui/ash/chrome_new_window_delegate.h"
#include "chrome/browser/ui/ash/session_state_delegate_views.h"
#include "chrome/browser/ui/ash/solid_color_user_wallpaper_delegate.h"
#include "chrome/browser/ui/ash/system_tray_delegate_common.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_tabstrip.h"
#include "chrome/browser/ui/browser_window.h"
#include "chrome/browser/ui/host_desktop.h"
#include "chrome/browser/ui/scoped_tabbed_browser_displayer.h"
#include "chrome/browser/ui/startup/startup_browser_creator_impl.h"
#include "chrome/common/chrome_switches.h"
#include "content/public/browser/notification_service.h"
#include "ui/chromeos/accessibility_types.h"
namespace {
class NewWindowDelegateImpl : public ChromeNewWindowDelegate {
public:
NewWindowDelegateImpl() {}
~NewWindowDelegateImpl() override {}
// Overridden from ash::NewWindowDelegate:
void OpenFileManager() override {}
void OpenCrosh() override {}
void OpenGetHelp() override {}
void ShowKeyboardOverlay() override {}
private:
DISALLOW_COPY_AND_ASSIGN(NewWindowDelegateImpl);
};
class MediaDelegateImpl : public ash::MediaDelegate {
public:
MediaDelegateImpl() {}
~MediaDelegateImpl() override {}
void HandleMediaNextTrack() override {}
void HandleMediaPlayPause() override {}
void HandleMediaPrevTrack() override {}
ash::MediaCaptureState GetMediaCaptureState(
content::BrowserContext* context) override {
return ash::MEDIA_CAPTURE_NONE;
}
private:
DISALLOW_COPY_AND_ASSIGN(MediaDelegateImpl);
};
class EmptyAccessibilityDelegate : public ash::AccessibilityDelegate {
public:
EmptyAccessibilityDelegate() {}
~EmptyAccessibilityDelegate() override {}
void ToggleHighContrast() override {}
bool IsHighContrastEnabled() const override { return false; }
bool IsSpokenFeedbackEnabled() const override { return false; }
void ToggleSpokenFeedback(
ui::AccessibilityNotificationVisibility notify) override {}
void SetLargeCursorEnabled(bool enalbed) override {}
bool IsLargeCursorEnabled() const override { return false; }
void SetMagnifierEnabled(bool enabled) override {}
void SetMagnifierType(ui::MagnifierType type) override {}
bool IsMagnifierEnabled() const override { return false; }
void SetAutoclickEnabled(bool enabled) override {}
bool IsAutoclickEnabled() const override { return false; }
ui::MagnifierType GetMagnifierType() const override {
return ui::kDefaultMagnifierType;
}
void SaveScreenMagnifierScale(double scale) override {}
double GetSavedScreenMagnifierScale() override {
return std::numeric_limits<double>::min();
}
bool ShouldShowAccessibilityMenu() const override { return false; }
bool IsBrailleDisplayConnected() const override { return false; }
void SilenceSpokenFeedback() const override {}
void SetVirtualKeyboardEnabled(bool enabled) override {}
bool IsVirtualKeyboardEnabled() const override { return false; }
void TriggerAccessibilityAlert(ui::AccessibilityAlert alert) override {}
ui::AccessibilityAlert GetLastAccessibilityAlert() override {
return ui::A11Y_ALERT_NONE;
}
void PlayEarcon(int sound_key) override {}
base::TimeDelta PlayShutdownSound() const override {
return base::TimeDelta();
}
private:
DISALLOW_COPY_AND_ASSIGN(EmptyAccessibilityDelegate);
};
} // namespace
bool ChromeShellDelegate::IsFirstRunAfterBoot() const {
return false;
}
void ChromeShellDelegate::PreInit() {
}
void ChromeShellDelegate::PreShutdown() {
}
ash::NewWindowDelegate* ChromeShellDelegate::CreateNewWindowDelegate() {
return new NewWindowDelegateImpl;
}
ash::MediaDelegate* ChromeShellDelegate::CreateMediaDelegate() {
return new MediaDelegateImpl;
}
ash::SessionStateDelegate* ChromeShellDelegate::CreateSessionStateDelegate() {
return new SessionStateDelegate;
}
ash::SystemTrayDelegate* ChromeShellDelegate::CreateSystemTrayDelegate() {
return new SystemTrayDelegateCommon();
}
ash::AccessibilityDelegate* ChromeShellDelegate::CreateAccessibilityDelegate() {
return new EmptyAccessibilityDelegate;
}
ash::UserWallpaperDelegate* ChromeShellDelegate::CreateUserWallpaperDelegate() {
return CreateSolidColorUserWallpaperDelegate();
}
void ChromeShellDelegate::Observe(int type,
const content::NotificationSource& source,
const content::NotificationDetails& details) {
switch (type) {
case chrome::NOTIFICATION_PROFILE_ADDED: {
// Start the error notifier services to show sync/auth notifications.
Profile* profile = content::Source<Profile>(source).ptr();
SigninErrorNotifierFactory::GetForProfile(profile);
SyncErrorNotifierFactory::GetForProfile(profile);
break;
}
case chrome::NOTIFICATION_ASH_SESSION_STARTED: {
// Start the error notifier services for the already loaded profiles.
const std::vector<Profile*> profiles =
g_browser_process->profile_manager()->GetLoadedProfiles();
for (std::vector<Profile*>::const_iterator it = profiles.begin();
it != profiles.end(); ++it) {
SigninErrorNotifierFactory::GetForProfile(*it);
SyncErrorNotifierFactory::GetForProfile(*it);
}
#if defined(OS_WIN)
// If we are launched to service a windows 8 search request then let the
// IPC which carries the search string create the browser and initiate
// the navigation.
if (base::CommandLine::ForCurrentProcess()->HasSwitch(
switches::kWindows8Search))
break;
#endif
// If Chrome ASH is launched when no browser is open in the desktop,
// we should execute the startup code.
// If there are browsers open in the desktop, we create a browser window
// and open a new tab page, if session restore is not on.
BrowserList* desktop_list = BrowserList::GetInstance(
chrome::HOST_DESKTOP_TYPE_NATIVE);
if (desktop_list->empty()) {
// We pass a dummy command line here, because the browser is launched in
// silent-mode by the metro viewer process, which causes the
// StartupBrowserCreatorImpl class to not create any browsers which is
// not the behavior we want.
base::CommandLine dummy(base::CommandLine::NO_PROGRAM);
StartupBrowserCreatorImpl startup_impl(
base::FilePath(),
dummy,
chrome::startup::IS_NOT_FIRST_RUN);
startup_impl.Launch(
ProfileManager::GetActiveUserProfile(),
std::vector<GURL>(),
true,
chrome::HOST_DESKTOP_TYPE_ASH);
} else {
Browser* browser =
chrome::FindBrowserWithWindow(ash::wm::GetActiveWindow());
if (browser && browser->is_type_tabbed()) {
chrome::AddTabAt(browser, GURL(), -1, true);
return;
}
chrome::ScopedTabbedBrowserDisplayer displayer(
ProfileManager::GetActiveUserProfile(),
chrome::HOST_DESKTOP_TYPE_ASH);
chrome::AddTabAt(displayer.browser(), GURL(), -1, true);
}
break;
}
case chrome::NOTIFICATION_ASH_SESSION_ENDED:
break;
default:
NOTREACHED() << "Unexpected notification " << type;
}
}
void ChromeShellDelegate::PlatformInit() {
#if defined(OS_WIN)
registrar_.Add(this,
chrome::NOTIFICATION_PROFILE_ADDED,
content::NotificationService::AllSources());
registrar_.Add(this,
chrome::NOTIFICATION_ASH_SESSION_STARTED,
content::NotificationService::AllSources());
registrar_.Add(this,
chrome::NOTIFICATION_ASH_SESSION_ENDED,
content::NotificationService::AllSources());
#endif
}
|