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

Unified Diff: chrome/browser/ui/website_settings/website_settings_ui.cc

Issue 1033103002: Plugin Power Saver: Overhaul plugin-power-saver flags. Show in UI. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 9 months 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/website_settings/website_settings_ui.cc
diff --git a/chrome/browser/ui/website_settings/website_settings_ui.cc b/chrome/browser/ui/website_settings/website_settings_ui.cc
index 210b5f5a17045f2146dca74d6e18a6e98578982d..80f38dbbb4455b463d359062fc055d5e55a882dc 100644
--- a/chrome/browser/ui/website_settings/website_settings_ui.cc
+++ b/chrome/browser/ui/website_settings/website_settings_ui.cc
@@ -4,6 +4,7 @@
#include "chrome/browser/ui/website_settings/website_settings_ui.h"
+#include "chrome/browser/plugins/plugins_field_trial.h"
#include "chrome/grit/chromium_strings.h"
#include "chrome/grit/generated_resources.h"
#include "grit/theme_resources.h"
@@ -176,15 +177,13 @@ base::string16 WebsiteSettingsUI::PermissionActionToUIString(
ContentSetting default_setting,
content_settings::SettingSource source) {
ContentSetting effective_setting = setting;
- if (effective_setting == CONTENT_SETTING_DEFAULT) {
+ if (effective_setting == CONTENT_SETTING_DEFAULT)
effective_setting = default_setting;
- // For Plugins, ASK is obsolete. Show as BLOCK to reflect actual behavior.
- if (type == CONTENT_SETTINGS_TYPE_PLUGINS &&
- default_setting == CONTENT_SETTING_ASK) {
- effective_setting = CONTENT_SETTING_BLOCK;
- }
- }
+#if defined(ENABLE_PLUGINS)
+ effective_setting =
+ PluginsFieldTrial::EffectiveContentSetting(type, effective_setting);
+#endif
const int* button_text_ids = NULL;
switch (source) {

Powered by Google App Engine
This is Rietveld 408576698