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

Unified Diff: ash/common/wm_shell.h

Issue 2545723003: ash: Add SessionController/Client mojo interfaces (Closed)
Patch Set: fix gn check and address comments in #6 Created 4 years 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: ash/common/wm_shell.h
diff --git a/ash/common/wm_shell.h b/ash/common/wm_shell.h
index 1dff4ae3131b6042aa392e9ed7087d56236e5568..4eba9189b8e92b05830d289d6e6281db50bece4f 100644
--- a/ash/common/wm_shell.h
+++ b/ash/common/wm_shell.h
@@ -56,6 +56,7 @@ class MaximizeModeController;
class MruWindowTracker;
class PaletteDelegate;
class ScopedDisableInternalMouseAndKeyboard;
+class SessionController;
class SessionStateDelegate;
class ShelfController;
class ShelfDelegate;
@@ -156,6 +157,8 @@ class ASH_EXPORT WmShell {
PaletteDelegate* palette_delegate() { return palette_delegate_.get(); }
+ SessionController* session_controller() { return session_controller_.get(); }
+
ShelfController* shelf_controller() { return shelf_controller_.get(); }
ShelfDelegate* shelf_delegate() { return shelf_delegate_.get(); }
@@ -494,6 +497,7 @@ class ASH_EXPORT WmShell {
std::unique_ptr<MruWindowTracker> mru_window_tracker_;
std::unique_ptr<mojom::NewWindowClient> new_window_client_;
std::unique_ptr<PaletteDelegate> palette_delegate_;
+ std::unique_ptr<SessionController> session_controller_;
std::unique_ptr<ShelfController> shelf_controller_;
std::unique_ptr<ShelfDelegate> shelf_delegate_;
std::unique_ptr<ShelfWindowWatcher> shelf_window_watcher_;

Powered by Google App Engine
This is Rietveld 408576698