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

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

Issue 2476493003: Remove FundamentalValue
Patch Set: Fix Created 4 years, 1 month 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 92e680f251bd48334aa9992b2cbdced98e53ce10..3869a144cc5c15a1f4c82da8f2cfa7c702f7ea82 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
@@ -3572,15 +3572,15 @@ 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));
+ 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