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

Unified Diff: ash/shell_delegate.h

Issue 11280236: A11y: Add the option to always show the a11y tray menu regardless of the state of a11y features (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 8 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
« no previous file with comments | « ash/shell/shell_delegate_impl.cc ('k') | ash/system/tray_accessibility.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ash/shell_delegate.h
diff --git a/ash/shell_delegate.h b/ash/shell_delegate.h
index 2b067d745bb36306cac108a570313ad0b5ac2955..a7eb83872619d35e0552ef59b52707c29420f0bc 100644
--- a/ash/shell_delegate.h
+++ b/ash/shell_delegate.h
@@ -67,19 +67,19 @@ class ASH_EXPORT ShellDelegate {
virtual ~ShellDelegate() {}
// Returns true if user has logged in.
- virtual bool IsUserLoggedIn() = 0;
+ virtual bool IsUserLoggedIn() const = 0;
// Returns true if we're logged in and browser has been started
- virtual bool IsSessionStarted() = 0;
+ virtual bool IsSessionStarted() const = 0;
// Returns true if this is the first time that the shell has been run after
// the system has booted. false is returned after the shell has been
// restarted, typically due to logging in as a guest or logging out.
- virtual bool IsFirstRunAfterBoot() = 0;
+ virtual bool IsFirstRunAfterBoot() const = 0;
// Returns true if a user is logged in whose session can be locked (i.e. the
// user has a password with which to unlock the session).
- virtual bool CanLockScreen() = 0;
+ virtual bool CanLockScreen() const = 0;
// Invoked when a user locks the screen.
virtual void LockScreen() = 0;
« no previous file with comments | « ash/shell/shell_delegate_impl.cc ('k') | ash/system/tray_accessibility.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698