blob: 2ebd3af862061c0d0af1fbb77415d2a2dba74cd7 [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_TEST_SHELL_DELEGATE_H_
#define ASH_TEST_TEST_SHELL_DELEGATE_H_
#include <memory>
#include <string>
#include "ash/common/media_delegate.h"
#include "ash/common/shell_delegate.h"
#include "ash/test/test_session_state_delegate.h"
#include "base/macros.h"
namespace app_list {
class AppListPresenterDelegateFactory;
class AppListPresenterImpl;
}
namespace keyboard {
class KeyboardUI;
}
namespace ash {
namespace test {
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:
bool IsFirstRunAfterBoot() const override;
bool IsIncognitoAllowed() const override;
bool IsMultiProfilesEnabled() const override;
bool IsRunningInForcedAppMode() const override;
bool CanShowWindowForUser(WmWindow* window) const override;
bool IsForceMaximizeOnFirstRun() const override;
void PreInit() override;
void PreShutdown() override;
void Exit() override;
keyboard::KeyboardUI* CreateKeyboardUI() override;
void OpenUrlFromArc(const GURL& url) override;
app_list::AppListPresenter* GetAppListPresenter() override;
ShelfDelegate* CreateShelfDelegate(ShelfModel* model) override;
SystemTrayDelegate* CreateSystemTrayDelegate() override;
std::unique_ptr<WallpaperDelegate> CreateWallpaperDelegate() override;
TestSessionStateDelegate* CreateSessionStateDelegate() override;
AccessibilityDelegate* CreateAccessibilityDelegate() override;
NewWindowDelegate* CreateNewWindowDelegate() override;
MediaDelegate* CreateMediaDelegate() override;
std::unique_ptr<PaletteDelegate> CreatePaletteDelegate() override;
ui::MenuModel* CreateContextMenu(WmShelf* wm_shelf,
const ShelfItem* item) override;
GPUSupport* CreateGPUSupport() override;
base::string16 GetProductName() const override;
gfx::Image GetDeprecatedAcceleratorImage() const override;
int num_exit_requests() const { return num_exit_requests_; }
app_list::AppListPresenterImpl* app_list_presenter() {
return app_list_presenter_.get();
}
void SetMediaCaptureState(MediaCaptureState state);
void SetForceMaximizeOnFirstRun(bool maximize) {
force_maximize_on_first_run_ = maximize;
}
private:
int num_exit_requests_;
bool multi_profiles_enabled_;
bool force_maximize_on_first_run_;
std::unique_ptr<app_list::AppListPresenterDelegateFactory>
app_list_presenter_delegate_factory_;
std::unique_ptr<app_list::AppListPresenterImpl> app_list_presenter_;
DISALLOW_COPY_AND_ASSIGN(TestShellDelegate);
};
} // namespace test
} // namespace ash
#endif // ASH_TEST_TEST_SHELL_DELEGATE_H_