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. |