blob: a933a08ccd2a41e58f6d0b2c5b631161ad3aa4b3 [file] [log] [blame]
// Copyright 2016 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_MUS_SHELL_DELEGATE_MUS_H_
#define ASH_MUS_SHELL_DELEGATE_MUS_H_
#include <memory>
#include "ash/common/shell_delegate.h"
#include "ash/mus/app_list_presenter_mus.h"
#include "base/macros.h"
namespace shell {
class Connector;
}
namespace ash {
class ShellDelegateMus : public ShellDelegate {
public:
explicit ShellDelegateMus(shell::Connector* connector);
~ShellDelegateMus() override;
// ShellDelegate:
::shell::Connector* GetShellConnector() const override;
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;
SessionStateDelegate* 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;
private:
shell::Connector* connector_;
AppListPresenterMus app_list_presenter_;
DISALLOW_COPY_AND_ASSIGN(ShellDelegateMus);
};
} // namespace ash
#endif // ASH_MUS_SHELL_DELEGATE_MUS_H_