summaryrefslogtreecommitdiffstats
path: root/ash/shell/shell_delegate_impl.h
blob: b10ef10b40efa3d27dca25593f42b0793d465fcb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
// 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_SHELL_SHELL_DELEGATE_IMPL_H_
#define ASH_SHELL_SHELL_DELEGATE_IMPL_H_

#include <string>

#include "ash/shell_delegate.h"
#include "base/compiler_specific.h"

namespace content {
class BrowserContext;
}

namespace keyboard {
class KeyboardControllerProxy;
}

namespace ash {
namespace shell {

class ShelfDelegateImpl;
class WindowWatcher;

class ShellDelegateImpl : public ash::ShellDelegate {
 public:
  ShellDelegateImpl();
  virtual ~ShellDelegateImpl();

  void SetWatcher(WindowWatcher* watcher);
  void set_browser_context(content::BrowserContext* browser_context) {
    browser_context_ = browser_context;
  }

  virtual bool IsFirstRunAfterBoot() const override;
  virtual bool IsIncognitoAllowed() const override;
  virtual bool IsMultiProfilesEnabled() const override;
  virtual bool IsRunningInForcedAppMode() const override;
  virtual bool IsMultiAccountEnabled() const override;
  virtual void PreInit() override;
  virtual void PreShutdown() override;
  virtual void Exit() override;
  virtual keyboard::KeyboardControllerProxy*
      CreateKeyboardControllerProxy() override;
  virtual void VirtualKeyboardActivated(bool activated) override;
  virtual void AddVirtualKeyboardStateObserver(
      VirtualKeyboardStateObserver* observer) override;
  virtual void RemoveVirtualKeyboardStateObserver(
      VirtualKeyboardStateObserver* observer) override;
  virtual content::BrowserContext* GetActiveBrowserContext() override;
  virtual app_list::AppListViewDelegate* GetAppListViewDelegate() override;
  virtual ShelfDelegate* CreateShelfDelegate(ShelfModel* model) override;
  virtual ash::SystemTrayDelegate* CreateSystemTrayDelegate() override;
  virtual ash::UserWallpaperDelegate* CreateUserWallpaperDelegate() override;
  virtual ash::SessionStateDelegate* CreateSessionStateDelegate() override;
  virtual ash::AccessibilityDelegate* CreateAccessibilityDelegate() override;
  virtual ash::NewWindowDelegate* CreateNewWindowDelegate() override;
  virtual ash::MediaDelegate* CreateMediaDelegate() override;
  virtual ui::MenuModel* CreateContextMenu(
      aura::Window* root_window,
      ash::ShelfItemDelegate* item_delegate,
      ash::ShelfItem* item) override;
  virtual GPUSupport* CreateGPUSupport() override;
  virtual base::string16 GetProductName() const override;

 private:
  // Used to update Launcher. Owned by main.
  WindowWatcher* watcher_;

  ShelfDelegateImpl* shelf_delegate_;
  content::BrowserContext* browser_context_;
  scoped_ptr<app_list::AppListViewDelegate> app_list_view_delegate_;

  DISALLOW_COPY_AND_ASSIGN(ShellDelegateImpl);
};

}  // namespace shell
}  // namespace ash

#endif  // ASH_SHELL_SHELL_DELEGATE_IMPL_H_