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

Unified Diff: chrome/browser/ui/ash/launcher/chrome_launcher_controller_impl_unittest.cc

Issue 2666093002: Remove base::FundamentalValue (Closed)
Patch Set: Rebase Created 3 years, 10 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/ui/ash/launcher/chrome_launcher_controller_impl_unittest.cc
diff --git a/chrome/browser/ui/ash/launcher/chrome_launcher_controller_impl_unittest.cc b/chrome/browser/ui/ash/launcher/chrome_launcher_controller_impl_unittest.cc
index a35eed9394dfc631ccac2bd9f6f95f21f6100193..600263f220ce4d31153998729aa8edcac3edd270 100644
--- a/chrome/browser/ui/ash/launcher/chrome_launcher_controller_impl_unittest.cc
+++ b/chrome/browser/ui/ash/launcher/chrome_launcher_controller_impl_unittest.cc
@@ -3639,16 +3639,16 @@ TEST_F(ChromeLauncherControllerImplWithArcTest, ArcManaged) {
// ARC is managed and enabled, Play Store pin should be available.
// Note: SHOWING_TERMS_OF_SERVICE here means that opt-in flow starts.
- profile()->GetTestingPrefService()->SetManagedPref(
- prefs::kArcEnabled, new base::FundamentalValue(true));
+ profile()->GetTestingPrefService()->SetManagedPref(prefs::kArcEnabled,
+ new base::Value(true));
base::RunLoop().RunUntilIdle();
ValidateArcState(true, true,
arc::ArcSessionManager::State::SHOWING_TERMS_OF_SERVICE,
"AppList, Chrome, Play Store");
// ARC is managed and disabled, Play Store pin should not be available.
- profile()->GetTestingPrefService()->SetManagedPref(
- prefs::kArcEnabled, new base::FundamentalValue(false));
+ profile()->GetTestingPrefService()->SetManagedPref(prefs::kArcEnabled,
+ new base::Value(false));
base::RunLoop().RunUntilIdle();
ValidateArcState(false, true, arc::ArcSessionManager::State::STOPPED,
"AppList, Chrome");

Powered by Google App Engine
This is Rietveld 408576698