Index: chrome/browser/chromeos/accessibility/magnification_manager.cc |
diff --git a/chrome/browser/chromeos/accessibility/magnification_manager.cc b/chrome/browser/chromeos/accessibility/magnification_manager.cc |
index 56819a49185111854b35d3347b13cb7ddf6a0dbe..b2bee06f340c6b4056d08c2b23cb241e61ecc5ef 100644 |
--- a/chrome/browser/chromeos/accessibility/magnification_manager.cc |
+++ b/chrome/browser/chromeos/accessibility/magnification_manager.cc |
@@ -102,15 +102,8 @@ class MagnificationManagerImpl : public MagnificationManager, |
} |
void UpdateMagnifierStatus() { |
- UserManager* manager = UserManager::Get(); |
- if (!profile_) { |
- SetMagnifier(ash::MAGNIFIER_OFF); |
- } else if (manager && !manager->IsSessionStarted()) { |
- SetMagnifier(ash::MAGNIFIER_FULL); |
- } else { |
- ash::MagnifierType type = GetMagnifierType(); |
- SetMagnifier(type); |
- } |
+ ash::MagnifierType type = GetMagnifierType(); |
+ SetMagnifier(type); |
} |
virtual void Observe(int type, |