blob: dbbaaf9dd7c9b5d0071779e677bab595978b552a (
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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
|
// 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_DELEGATE_H_
#define ASH_SHELL_DELEGATE_H_
#pragma once
#include <vector>
#include "ash/ash_export.h"
#include "ash/shell.h"
#include "base/callback.h"
#include "base/string16.h"
namespace app_list {
class AppListViewDelegate;
}
namespace aura {
class Window;
}
namespace ui {
class AcceleratorTarget;
}
namespace views {
class Widget;
}
namespace ash {
class LauncherDelegate;
class LauncherModel;
struct LauncherItem;
class ScreenshotDelegate;
class SystemTray;
class SystemTrayDelegate;
class UserWallpaperDelegate;
// Delegate of the Shell.
class ASH_EXPORT ShellDelegate {
public:
// The Shell owns the delegate.
virtual ~ShellDelegate() {}
// Returns true if user has logged in.
virtual bool IsUserLoggedIn() = 0;
// Invoked when a user locks the screen.
virtual void LockScreen() = 0;
// Unlock the screen. Currently used only for tests.
virtual void UnlockScreen() = 0;
// Returns true if the screen is currently locked.
virtual bool IsScreenLocked() const = 0;
// Shuts down the environment.
virtual void Shutdown() = 0;
// Invoked when the user uses Ctrl-Shift-Q to close chrome.
virtual void Exit() = 0;
// Invoked when the user uses Ctrl-N or Ctrl-Shift-N to open a new window.
virtual void NewWindow(bool incognito) = 0;
// Invoked when the user presses the Search key.
virtual void Search() = 0;
// Invoked when the user uses Ctrl-M to open file manager.
virtual void OpenFileManager() = 0;
// Invoked when the user opens Crosh.
virtual void OpenCrosh() = 0;
// Invoked when the user needs to set up mobile networking.
virtual void OpenMobileSetup() = 0;
// Shows the keyboard shortcut overlay.
virtual void ShowKeyboardOverlay(ui::AcceleratorTarget* target) = 0;
// Get the current browser context. This will get us the current profile.
virtual content::BrowserContext* GetCurrentBrowserContext() = 0;
// Invoked when the user presses a shortcut to toggle spoken feedback
// for accessibility.
virtual void ToggleSpokenFeedback() = 0;
// Invoked to create an AppListViewDelegate. Shell takes the ownership of
// the created delegate.
virtual app_list::AppListViewDelegate* CreateAppListViewDelegate() = 0;
// Invoked to start taking partial screenshot.
virtual void StartPartialScreenshot(
ScreenshotDelegate* screenshot_delegate) = 0;
// Creates a new LauncherDelegate. Shell takes ownership of the returned
// value.
virtual LauncherDelegate* CreateLauncherDelegate(
ash::LauncherModel* model) = 0;
// Creates a system-tray delegate. Shell takes ownership of the delegate.
virtual SystemTrayDelegate* CreateSystemTrayDelegate(SystemTray* tray) = 0;
// Creates a user wallpaper delegate. Shell takes ownership of the delegate.
virtual UserWallpaperDelegate* CreateUserWallpaperDelegate() = 0;
};
} // namespace ash
#endif // ASH_SHELL_DELEGATE_H_
|