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

Unified Diff: chrome/browser/plugins/plugin_policy_handler.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/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));
}
}
}
« no previous file with comments | « chrome/browser/plugins/plugin_info_message_filter_unittest.cc ('k') | chrome/browser/policy/cloud/cloud_policy_browsertest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698