OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "ash/magnifier/magnification_controller.h" | 5 #include "ash/magnifier/magnification_controller.h" |
6 #include "ash/shell.h" | 6 #include "ash/shell.h" |
7 #include "ash/system/tray/system_tray.h" | 7 #include "ash/system/tray/system_tray.h" |
8 #include "ash/system/tray/tray_views.h" | |
9 #include "ash/system/tray_accessibility.h" | 8 #include "ash/system/tray_accessibility.h" |
10 #include "ash/system/user/login_status.h" | 9 #include "ash/system/user/login_status.h" |
11 #include "base/command_line.h" | 10 #include "base/command_line.h" |
12 #include "base/prefs/pref_service.h" | 11 #include "base/prefs/pref_service.h" |
13 #include "chrome/browser/browser_process.h" | 12 #include "chrome/browser/browser_process.h" |
14 #include "chrome/browser/chromeos/accessibility/accessibility_util.h" | 13 #include "chrome/browser/chromeos/accessibility/accessibility_util.h" |
15 #include "chrome/browser/chromeos/accessibility/magnification_manager.h" | 14 #include "chrome/browser/chromeos/accessibility/magnification_manager.h" |
16 #include "chrome/browser/chromeos/cros/cros_in_process_browser_test.h" | 15 #include "chrome/browser/chromeos/cros/cros_in_process_browser_test.h" |
17 #include "chrome/browser/chromeos/login/helper.h" | 16 #include "chrome/browser/chromeos/login/helper.h" |
18 #include "chrome/browser/chromeos/login/login_utils.h" | 17 #include "chrome/browser/chromeos/login/login_utils.h" |
(...skipping 459 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
478 accessibility::EnableHighContrast(false); | 477 accessibility::EnableHighContrast(false); |
479 SetMagnifierEnabled(false); | 478 SetMagnifierEnabled(false); |
480 EXPECT_TRUE(CreateDetailedMenu()); | 479 EXPECT_TRUE(CreateDetailedMenu()); |
481 EXPECT_FALSE(IsSpokenFeedbackEnabledOnDetailMenu()); | 480 EXPECT_FALSE(IsSpokenFeedbackEnabledOnDetailMenu()); |
482 EXPECT_FALSE(IsHighContrastEnabledOnDetailMenu()); | 481 EXPECT_FALSE(IsHighContrastEnabledOnDetailMenu()); |
483 EXPECT_FALSE(IsScreenMagnifierEnabledOnDetailMenu()); | 482 EXPECT_FALSE(IsScreenMagnifierEnabledOnDetailMenu()); |
484 CloseDetailMenu(); | 483 CloseDetailMenu(); |
485 } | 484 } |
486 | 485 |
487 } // namespace chromeos | 486 } // namespace chromeos |
OLD | NEW |