blob: 7e61d26d59c54f4c218ed0a9d529ace9839b369a [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/accessibility/default_accessibility_delegate.h"
#include "ash/keyboard/test_keyboard_ui.h"
#include "ash/system/tray/system_tray_notifier.h"
#include "ash/test_screenshot_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::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() {}
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<ScreenshotDelegate>
TestShellDelegate::CreateScreenshotDelegate() {
return std::make_unique<TestScreenshotDelegate>();
}
std::unique_ptr<WallpaperDelegate>
TestShellDelegate::CreateWallpaperDelegate() {
return std::make_unique<TestWallpaperDelegate>();
}
AccessibilityDelegate* TestShellDelegate::CreateAccessibilityDelegate() {
return new DefaultAccessibilityDelegate;
}
base::string16 TestShellDelegate::GetProductName() const {
return base::string16();
}
gfx::Image TestShellDelegate::GetDeprecatedAcceleratorImage() const {
return gfx::Image();
}
ui::InputDeviceControllerClient*
TestShellDelegate::GetInputDeviceControllerClient() {
return nullptr;
}
} // namespace ash