blob: 3611b7cc07216f23691d7b9563762a39c11bcc85 [file] [log] [blame]
// Copyright (c) 2012 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 "ash/test_shell_delegate.h"
#include "ash/gpu_support_stub.h"
#include "ash/keyboard/test_keyboard_ui.h"
#include "ash/palette_delegate.h"
#include "ash/system/tray/system_tray_notifier.h"
#include "ash/test/test_accessibility_delegate.h"
#include "ash/wallpaper/test_wallpaper_delegate.h"
#include "base/logging.h"
#include "ui/gfx/image/image.h"
namespace ash {
TestShellDelegate::TestShellDelegate() = default;
TestShellDelegate::~TestShellDelegate() = default;
::service_manager::Connector* TestShellDelegate::GetShellConnector() const {
return nullptr;
}
bool TestShellDelegate::IsIncognitoAllowed() const {
return true;
}
bool TestShellDelegate::IsMultiProfilesEnabled() const {
return multi_profiles_enabled_;
}
bool TestShellDelegate::IsRunningInForcedAppMode() const {
return false;
}
bool TestShellDelegate::CanShowWindowForUser(aura::Window* window) const {
return true;
}
bool TestShellDelegate::IsForceMaximizeOnFirstRun() const {
return force_maximize_on_first_run_;
}
void TestShellDelegate::PreInit() {}
void TestShellDelegate::PreShutdown() {}
void TestShellDelegate::Exit() {
num_exit_requests_++;
}
std::unique_ptr<keyboard::KeyboardUI> TestShellDelegate::CreateKeyboardUI() {
return std::make_unique<TestKeyboardUI>();
}
void TestShellDelegate::OpenUrlFromArc(const GURL& url) {}
NetworkingConfigDelegate* TestShellDelegate::GetNetworkingConfigDelegate() {
return nullptr;
}
std::unique_ptr<WallpaperDelegate>
TestShellDelegate::CreateWallpaperDelegate() {
return std::make_unique<TestWallpaperDelegate>();
}
AccessibilityDelegate* TestShellDelegate::CreateAccessibilityDelegate() {
return new TestAccessibilityDelegate();
}
std::unique_ptr<PaletteDelegate> TestShellDelegate::CreatePaletteDelegate() {
return nullptr;
}
GPUSupport* TestShellDelegate::CreateGPUSupport() {
// Real GPU support depends on src/content, so just use a stub.
return new GPUSupportStub;
}
base::string16 TestShellDelegate::GetProductName() const {
return base::string16();
}
gfx::Image TestShellDelegate::GetDeprecatedAcceleratorImage() const {
return gfx::Image();
}
ui::InputDeviceControllerClient*
TestShellDelegate::GetInputDeviceControllerClient() {
return nullptr;
}
} // namespace ash