Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2724)

Unified Diff: chrome/browser/chromeos/policy/login_screen_default_policy_browsertest.cc

Issue 2078393005: mash: Move accessibility_types.h from ui namespace to ash namespace (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@a11y
Patch Set: fix chromevox code generated from js Created 4 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/chromeos/policy/login_screen_default_policy_browsertest.cc
diff --git a/chrome/browser/chromeos/policy/login_screen_default_policy_browsertest.cc b/chrome/browser/chromeos/policy/login_screen_default_policy_browsertest.cc
index 7f010454505d73c6c1e39425624d28ab2fdc6043..6a92bd33cdf0438eba0246af0c50768e25864eb7 100644
--- a/chrome/browser/chromeos/policy/login_screen_default_policy_browsertest.cc
+++ b/chrome/browser/chromeos/policy/login_screen_default_policy_browsertest.cc
@@ -327,14 +327,14 @@ IN_PROC_BROWSER_TEST_F(LoginScreenDefaultPolicyLoginScreenBrowsertest,
VerifyPrefFollowsRecommendation(prefs::kAccessibilityScreenMagnifierEnabled,
base::FundamentalValue(true));
VerifyPrefFollowsRecommendation(prefs::kAccessibilityScreenMagnifierType,
- base::FundamentalValue(ui::MAGNIFIER_FULL));
+ base::FundamentalValue(ash::MAGNIFIER_FULL));
// Verify that the full-screen magnifier is enabled.
chromeos::MagnificationManager* magnification_manager =
chromeos::MagnificationManager::Get();
ASSERT_TRUE(magnification_manager);
EXPECT_TRUE(magnification_manager->IsMagnifierEnabled());
- EXPECT_EQ(ui::MAGNIFIER_FULL, magnification_manager->GetMagnifierType());
+ EXPECT_EQ(ash::MAGNIFIER_FULL, magnification_manager->GetMagnifierType());
}
IN_PROC_BROWSER_TEST_F(LoginScreenDefaultPolicyInSessionBrowsertest,
@@ -435,7 +435,7 @@ IN_PROC_BROWSER_TEST_F(LoginScreenDefaultPolicyInSessionBrowsertest,
chromeos::MagnificationManager::Get();
ASSERT_TRUE(magnification_manager);
EXPECT_FALSE(magnification_manager->IsMagnifierEnabled());
- EXPECT_EQ(ui::kDefaultMagnifierType,
+ EXPECT_EQ(ash::kDefaultMagnifierType,
magnification_manager->GetMagnifierType());
}

Powered by Google App Engine
This is Rietveld 408576698