Index: ash/shell_delegate.h |
=================================================================== |
--- ash/shell_delegate.h (revision 176110) |
+++ ash/shell_delegate.h (working copy) |
@@ -149,9 +149,15 @@ |
// Returns true if high contrast mode is enabled. |
virtual bool IsHighContrastEnabled() const = 0; |
- // Invoked to change the mode of the screen magnifier. |
- virtual void SetMagnifier(MagnifierType type) = 0; |
+ // Invoked to enable the screen magnifier. |
+ virtual void SetMagnifierEnabled(bool enabled) = 0; |
+ // Invoked to change the type of the screen magnifier. |
+ virtual void SetMagnifierType(MagnifierType type) = 0; |
+ |
+ // Returns if the screen magnifier is enabled or not. |
+ virtual bool IsMagnifierEnabled() const = 0; |
+ |
// Returns the current screen magnifier mode. |
virtual MagnifierType GetMagnifierType() const = 0; |