blob: 8387ffeeb2c60a20a1aa075cf993106c1601b87f [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.
#ifndef ASH_TEST_SHELL_DELEGATE_H_
#define ASH_TEST_SHELL_DELEGATE_H_
#include <memory>
#include <string>
#include "ash/shell_delegate.h"
#include "base/macros.h"
namespace keyboard {
class KeyboardUI;
}
namespace ash {
class ShelfInitializer;
class TestShellDelegate : public ShellDelegate {
public:
TestShellDelegate();
~TestShellDelegate() override;
void set_multi_profiles_enabled(bool multi_profiles_enabled) {
multi_profiles_enabled_ = multi_profiles_enabled;
}
// Overridden from ShellDelegate:
::service_manager::Connector* GetShellConnector() const override;
bool IsIncognitoAllowed() const override;
bool IsMultiProfilesEnabled() const override;
bool IsRunningInForcedAppMode() const override;
bool CanShowWindowForUser(aura::Window* window) const override;
bool IsForceMaximizeOnFirstRun() const override;
void PreInit() override;
void PreShutdown() override;
void Exit() override;
std::unique_ptr<keyboard::KeyboardUI> CreateKeyboardUI() override;
void ShelfInit() override;
void ShelfShutdown() override;
void OpenUrlFromArc(const GURL& url) override;
NetworkingConfigDelegate* GetNetworkingConfigDelegate() override;
std::unique_ptr<WallpaperDelegate> CreateWallpaperDelegate() override;
AccessibilityDelegate* CreateAccessibilityDelegate() override;
std::unique_ptr<PaletteDelegate> CreatePaletteDelegate() override;
GPUSupport* CreateGPUSupport() override;
base::string16 GetProductName() const override;
gfx::Image GetDeprecatedAcceleratorImage() const override;
bool GetTouchscreenEnabled(TouchscreenEnabledSource source) const override;
void SetTouchscreenEnabled(bool enabled,
TouchscreenEnabledSource source) override;
void SuspendMediaSessions() override;
ui::InputDeviceControllerClient* GetInputDeviceControllerClient() override;
int num_exit_requests() const { return num_exit_requests_; }
void SetForceMaximizeOnFirstRun(bool maximize) {
force_maximize_on_first_run_ = maximize;
}
bool media_sessions_suspended() const { return media_sessions_suspended_; }
private:
int num_exit_requests_ = 0;
bool multi_profiles_enabled_ = false;
bool force_maximize_on_first_run_ = false;
bool global_touchscreen_enabled_ = true;
bool media_sessions_suspended_ = false;
std::unique_ptr<ShelfInitializer> shelf_initializer_;
DISALLOW_COPY_AND_ASSIGN(TestShellDelegate);
};
} // namespace ash
#endif // ASH_TEST_SHELL_DELEGATE_H_