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

Unified Diff: ash/shell.h

Issue 178183005: Add LogoutConfirmationController to show LogoutConfirmationDialogs (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Comments addressed. 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
« no previous file with comments | « ash/ash.gyp ('k') | ash/shell.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ash/shell.h
diff --git a/ash/shell.h b/ash/shell.h
index cdab1e039e374e37d49d7168c64d5ffee20cefc4..bc318f085ce45c94edfef8b7d0b1dcb00eb1c781 100644
--- a/ash/shell.h
+++ b/ash/shell.h
@@ -130,6 +130,7 @@ class EventTransformationHandler;
class FocusCycler;
class KeyboardUMAEventFilter;
class LocaleNotificationController;
+class LogoutConfirmationController;
class MaximizeModeWindowManager;
class MouseCursorEventFilter;
class OutputConfiguratorAnimation;
@@ -525,6 +526,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();
}
@@ -670,6 +675,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.
« no previous file with comments | « ash/ash.gyp ('k') | ash/shell.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698