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

Unified Diff: ui/aura_shell/shell.h

Issue 8558031: [Aura] Refactor and update app list window. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 1 month 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 side-by-side diff with in-line comments
Download patch
Index: ui/aura_shell/shell.h
diff --git a/ui/aura_shell/shell.h b/ui/aura_shell/shell.h
index fd0d59628b38c01b6983f9aa1b9fa60ee18da5bc..b9348cbdec0937d9b45d9bfc6a2ea68974096aaa 100644
--- a/ui/aura_shell/shell.h
+++ b/ui/aura_shell/shell.h
@@ -30,6 +30,7 @@ class Launcher;
class ShellDelegate;
namespace internal {
+class AppList;
class DragDropController;
class ShelfLayoutController;
class WorkspaceController;
@@ -61,6 +62,9 @@ class AURA_SHELL_EXPORT Shell {
// Toggles between overview mode and normal mode.
void ToggleOverview();
+ // Toggles app list.
+ void ToggleAppList();
+
ShellDelegate* delegate() { return delegate_.get(); }
Launcher* launcher() { return launcher_.get(); }
@@ -85,6 +89,8 @@ class AURA_SHELL_EXPORT Shell {
scoped_ptr<Launcher> launcher_;
+ scoped_ptr<internal::AppList> app_list_;
+
scoped_ptr<internal::DragDropController> drag_drop_controller_;
scoped_ptr<internal::WorkspaceController> workspace_controller_;
scoped_ptr<internal::ShelfLayoutController> shelf_layout_controller_;

Powered by Google App Engine
This is Rietveld 408576698