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

Unified Diff: ash/shell.h

Issue 178183005: Add LogoutConfirmationController to show LogoutConfirmationDialogs (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 10 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 side-by-side diff with in-line comments
Download patch
Index: ash/shell.h
diff --git a/ash/shell.h b/ash/shell.h
index 02aaef3eb31603ff5796ef2bb422f584aabdb45b..f510ffe92296f6469ff7bbcbb758cb1f4d6681bb 100644
--- a/ash/shell.h
+++ b/ash/shell.h
@@ -129,6 +129,7 @@ class EventTransformationHandler;
class FocusCycler;
class KeyboardUMAEventFilter;
class LocaleNotificationController;
+class LogoutConfirmationController;
class MaximizeModeWindowManager;
class MouseCursorEventFilter;
class OutputConfiguratorAnimation;
@@ -516,6 +517,10 @@ class ASH_EXPORT Shell
return window_tree_host_factory_.get();
}
+ internal::LogoutConfirmationController* logout_confirmation_controller() {
+ return logout_confirmation_controller_.get();
+ }
+
ShelfModel* shelf_model() {
return shelf_model_.get();
}
@@ -661,6 +666,8 @@ class ASH_EXPORT Shell
scoped_ptr<internal::EventTransformationHandler>
event_transformation_handler_;
scoped_ptr<WindowTreeHostFactory> window_tree_host_factory_;
+ scoped_ptr<internal::LogoutConfirmationController>
+ logout_confirmation_controller_;
// An event filter that pre-handles key events while the partial
// screenshot UI or the keyboard overlay is active.

Powered by Google App Engine
This is Rietveld 408576698