Index: chrome/browser/chromeos/system/automatic_reboot_manager_unittest.cc |
diff --git a/chrome/browser/chromeos/system/automatic_reboot_manager_unittest.cc b/chrome/browser/chromeos/system/automatic_reboot_manager_unittest.cc |
index 5f309c761233cc9bb2e813a9d993c48e6322eb89..d726218b6c8c7b3ee7159fd9fe2331db1224c841 100644 |
--- a/chrome/browser/chromeos/system/automatic_reboot_manager_unittest.cc |
+++ b/chrome/browser/chromeos/system/automatic_reboot_manager_unittest.cc |
@@ -393,9 +393,8 @@ void AutomaticRebootManagerBasicTest::SetRebootAfterUpdate( |
bool reboot_after_update, |
bool expect_reboot) { |
reboot_after_update_ = reboot_after_update; |
- local_state_.SetManagedPref( |
- prefs::kRebootAfterUpdate, |
- base::Value::CreateBooleanValue(reboot_after_update)); |
+ local_state_.SetManagedPref(prefs::kRebootAfterUpdate, |
+ new base::FundamentalValue(reboot_after_update)); |
task_runner_->RunUntilIdle(); |
EXPECT_EQ(expect_reboot ? 1 : 0, |
power_manager_client_->num_request_restart_calls()); |