| 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 2722dd8a8104d1492387cf3a0e95418d58db3320..1027d95ab53eea0a6f2e0f616370aca796a3d5df 100644
|
| --- a/chrome/browser/ui/ash/ash_init.cc
|
| +++ b/chrome/browser/ui/ash/ash_init.cc
|
| @@ -77,12 +77,12 @@ void OpenAsh(gfx::AcceleratedWidget remote_window) {
|
| DCHECK(chromeos::MagnificationManager::Get());
|
| bool magnifier_enabled =
|
| chromeos::MagnificationManager::Get()->IsMagnifierEnabled();
|
| - ash::MagnifierType magnifier_type =
|
| + ui::MagnifierType magnifier_type =
|
| chromeos::MagnificationManager::Get()->GetMagnifierType();
|
| shell->magnification_controller()->
|
| - SetEnabled(magnifier_enabled && magnifier_type == ash::MAGNIFIER_FULL);
|
| + SetEnabled(magnifier_enabled && magnifier_type == ui::MAGNIFIER_FULL);
|
| shell->partial_magnification_controller()->
|
| - SetEnabled(magnifier_enabled && magnifier_type == ash::MAGNIFIER_PARTIAL);
|
| + SetEnabled(magnifier_enabled && magnifier_type == ui::MAGNIFIER_PARTIAL);
|
|
|
| if (!CommandLine::ForCurrentProcess()->HasSwitch(
|
| switches::kDisableZeroBrowsersOpenForTests)) {
|
|
|