| Index: components/ssl_config/ssl_config_service_manager_pref_unittest.cc
|
| diff --git a/components/ssl_config/ssl_config_service_manager_pref_unittest.cc b/components/ssl_config/ssl_config_service_manager_pref_unittest.cc
|
| index 1ddceac7b1c835fa471c1df65686056ba80eb2da..12edb50c937f502358b3a1b85d56a7cf34cf080f 100644
|
| --- a/components/ssl_config/ssl_config_service_manager_pref_unittest.cc
|
| +++ b/components/ssl_config/ssl_config_service_manager_pref_unittest.cc
|
| @@ -295,7 +295,7 @@ TEST_F(SSLConfigServiceManagerPrefTest, SHA1ForLocalAnchors) {
|
| // Enabling the local preference should result in SHA-1 local trust anchors
|
| // being enabled.
|
| local_state.SetUserPref(ssl_config::prefs::kCertEnableSha1LocalAnchors,
|
| - new base::FundamentalValue(true));
|
| + new base::Value(true));
|
| // Pump the message loop to notify the SSLConfigServiceManagerPref that the
|
| // preferences changed.
|
| base::RunLoop().RunUntilIdle();
|
| @@ -307,7 +307,7 @@ TEST_F(SSLConfigServiceManagerPrefTest, SHA1ForLocalAnchors) {
|
| // Disabling the local preference should result in SHA-1 local trust
|
| // anchors being disabled.
|
| local_state.SetUserPref(ssl_config::prefs::kCertEnableSha1LocalAnchors,
|
| - new base::FundamentalValue(false));
|
| + new base::Value(false));
|
| // Pump the message loop to notify the SSLConfigServiceManagerPref that the
|
| // preferences changed.
|
| base::RunLoop().RunUntilIdle();
|
|
|