| Index: chrome/browser/ui/ash/ash_init.cc
|
| diff --git a/chrome/browser/ui/ash/ash_init.cc b/chrome/browser/ui/ash/ash_init.cc
|
| index 0e0f2dbe3d81512e9682ca8d716f191a40a16bc9..5555e88d76b4e4489069c9267fc7c057d5e5a1ff 100644
|
| --- a/chrome/browser/ui/ash/ash_init.cc
|
| +++ b/chrome/browser/ui/ash/ash_init.cc
|
| @@ -94,12 +94,12 @@ void OpenAsh() {
|
| ash::Shell::GetInstance()->high_contrast_controller()->SetEnabled(
|
| chromeos::accessibility::IsHighContrastEnabled());
|
|
|
| - chromeos::accessibility::ScreenMagnifierType magnifier_type =
|
| - chromeos::accessibility::GetScreenMagnifierType();
|
| + ash::MagnifierType magnifier_type =
|
| + chromeos::accessibility::GetMagnifierType();
|
| ash::Shell::GetInstance()->magnification_controller()->SetEnabled(
|
| - magnifier_type == chromeos::accessibility::MAGNIFIER_FULL);
|
| + magnifier_type == ash::MAGNIFIER_FULL);
|
| ash::Shell::GetInstance()->partial_magnification_controller()->SetEnabled(
|
| - magnifier_type == chromeos::accessibility::MAGNIFIER_PARTIAL);
|
| + magnifier_type == ash::MAGNIFIER_PARTIAL);
|
|
|
| if (!CommandLine::ForCurrentProcess()->HasSwitch(
|
| switches::kDisableZeroBrowsersOpenForTests)) {
|
|
|