Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1)

Side by Side Diff: ash/sysui/shell_delegate_mus.h

Issue 2339633002: mash: Port KeyboardUIMus to mojo:ash; remove sysui. (Closed)
Patch Set: Add mash NOTIMPLEMENTED() in AccessibilityManager::UpdateVirtualKeyboardFromPref() Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « ash/sysui/manifest.json ('k') | ash/sysui/shell_delegate_mus.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright 2016 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef ASH_SYSUI_SHELL_DELEGATE_MUS_H_
6 #define ASH_SYSUI_SHELL_DELEGATE_MUS_H_
7
8 #include <memory>
9
10 #include "ash/common/shell_delegate.h"
11 #include "base/macros.h"
12
13 namespace keyboard {
14 class KeyboardUI;
15 }
16
17 namespace ash {
18 namespace sysui {
19
20 class ShellDelegateMus : public ShellDelegate {
21 public:
22 ShellDelegateMus();
23 ~ShellDelegateMus() override;
24
25 bool IsFirstRunAfterBoot() const override;
26 bool IsIncognitoAllowed() const override;
27 bool IsMultiProfilesEnabled() const override;
28 bool IsRunningInForcedAppMode() const override;
29 bool CanShowWindowForUser(WmWindow* window) const override;
30 bool IsForceMaximizeOnFirstRun() const override;
31 void PreInit() override;
32 void PreShutdown() override;
33 void Exit() override;
34 keyboard::KeyboardUI* CreateKeyboardUI() override;
35 void OpenUrlFromArc(const GURL& url) override;
36 app_list::AppListPresenter* GetAppListPresenter() override;
37 ShelfDelegate* CreateShelfDelegate(ShelfModel* model) override;
38 SystemTrayDelegate* CreateSystemTrayDelegate() override;
39 std::unique_ptr<WallpaperDelegate> CreateWallpaperDelegate() override;
40 SessionStateDelegate* CreateSessionStateDelegate() override;
41 AccessibilityDelegate* CreateAccessibilityDelegate() override;
42 NewWindowDelegate* CreateNewWindowDelegate() override;
43 MediaDelegate* CreateMediaDelegate() override;
44 std::unique_ptr<PaletteDelegate> CreatePaletteDelegate() override;
45 ui::MenuModel* CreateContextMenu(WmShelf* wm_shelf,
46 const ShelfItem* item) override;
47 GPUSupport* CreateGPUSupport() override;
48 base::string16 GetProductName() const override;
49 gfx::Image GetDeprecatedAcceleratorImage() const override;
50
51 private:
52 DISALLOW_COPY_AND_ASSIGN(ShellDelegateMus);
53 };
54
55 } // namespace sysui
56 } // namespace ash
57
58 #endif // ASH_SYSUI_SHELL_DELEGATE_MUS_H_
OLDNEW
« no previous file with comments | « ash/sysui/manifest.json ('k') | ash/sysui/shell_delegate_mus.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698