| Index: chrome/browser/plugins/plugin_policy_handler.cc
|
| diff --git a/chrome/browser/plugins/plugin_policy_handler.cc b/chrome/browser/plugins/plugin_policy_handler.cc
|
| index 7d03b3b77a390517343fb97649e15364e4e4179c..dddd894d9d59f3646b6a554add49923b8923823a 100644
|
| --- a/chrome/browser/plugins/plugin_policy_handler.cc
|
| +++ b/chrome/browser/plugins/plugin_policy_handler.cc
|
| @@ -57,7 +57,7 @@ void PluginPolicyHandler::ProcessPolicy(const policy::PolicyMap& policies,
|
| !policies.GetValue(policy::key::kAlwaysOpenPdfExternally)) {
|
| prefs->SetValue(
|
| prefs::kPluginsAlwaysOpenPdfExternally,
|
| - base::MakeUnique<base::FundamentalValue>(disable_pdf_plugin));
|
| + base::MakeUnique<base::Value>(disable_pdf_plugin));
|
| }
|
| if ((base::MatchPattern(
|
| PluginMetadata::kAdobeFlashPlayerGroupName, plugin) ||
|
| @@ -65,7 +65,7 @@ void PluginPolicyHandler::ProcessPolicy(const policy::PolicyMap& policies,
|
| !policies.GetValue(policy::key::kDefaultPluginsSetting)) {
|
| prefs->SetValue(
|
| prefs::kManagedDefaultPluginsSetting,
|
| - base::MakeUnique<base::FundamentalValue>(flash_content_setting));
|
| + base::MakeUnique<base::Value>(flash_content_setting));
|
| }
|
| }
|
| }
|
|
|