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

Unified Diff: ash/shell.h

Issue 2876673002: mojo api for view based lockscreen (Closed)
Patch Set: comments and rebase Created 3 years, 7 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 e3991f2b5652814d4b4b2ed29bc143b5cf53b18d..fd5c307d4bb15589515bba9aaf661bfebd485c2b 100644
--- a/ash/shell.h
+++ b/ash/shell.h
@@ -119,6 +119,7 @@ class LinkHandlerModelFactory;
class LocaleNotificationController;
class LockStateController;
class LogoutConfirmationController;
+class LockScreenController;
class MagnificationController;
class MaximizeModeController;
class MediaController;
@@ -327,6 +328,9 @@ class ASH_EXPORT Shell : public SessionObserver,
LogoutConfirmationController* logout_confirmation_controller() {
return logout_confirmation_controller_.get();
}
+ LockScreenController* lock_screen_controller() {
+ return lock_screen_controller_.get();
+ }
MaximizeModeController* maximize_mode_controller() {
return maximize_mode_controller_.get();
}
@@ -689,6 +693,7 @@ class ASH_EXPORT Shell : public SessionObserver,
keyboard_brightness_control_delegate_;
std::unique_ptr<KeyboardUI> keyboard_ui_;
std::unique_ptr<LocaleNotificationController> locale_notification_controller_;
+ std::unique_ptr<LockScreenController> lock_screen_controller_;
std::unique_ptr<LogoutConfirmationController> logout_confirmation_controller_;
std::unique_ptr<MaximizeModeController> maximize_mode_controller_;
std::unique_ptr<MediaController> media_controller_;

Powered by Google App Engine
This is Rietveld 408576698