| OLD | NEW |
| (Empty) | |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #include "components/content_settings/core/browser/plugins_field_trial.h" |
| 6 |
| 7 #include "base/command_line.h" |
| 8 #include "base/metrics/field_trial.h" |
| 9 #include "components/plugins/common/plugins_switches.h" |
| 10 |
| 11 namespace content_settings { |
| 12 |
| 13 // static |
| 14 const char PluginsFieldTrial::kFieldTrialName[] = "ForcePluginPowerSaver"; |
| 15 |
| 16 // static |
| 17 ContentSetting PluginsFieldTrial::EffectiveContentSetting( |
| 18 ContentSettingsType type, |
| 19 ContentSetting setting) { |
| 20 if (type != CONTENT_SETTINGS_TYPE_PLUGINS) |
| 21 return setting; |
| 22 |
| 23 // For Plugins, ASK is obsolete. Show as BLOCK to reflect actual behavior. |
| 24 if (setting == ContentSetting::CONTENT_SETTING_ASK) |
| 25 return ContentSetting::CONTENT_SETTING_BLOCK; |
| 26 |
| 27 return setting; |
| 28 } |
| 29 |
| 30 // static |
| 31 bool PluginsFieldTrial::IsPluginPowerSaverEnabled() { |
| 32 const base::CommandLine* cl = base::CommandLine::ForCurrentProcess(); |
| 33 if (cl->HasSwitch(plugins::switches::kDisablePluginPowerSaver)) |
| 34 return false; |
| 35 if (cl->HasSwitch(plugins::switches::kEnablePluginPowerSaver)) |
| 36 return true; |
| 37 |
| 38 std::string group_name = base::FieldTrialList::FindFullName(kFieldTrialName); |
| 39 return !group_name.empty() && group_name != "Disabled"; |
| 40 } |
| 41 |
| 42 // static |
| 43 ContentSetting PluginsFieldTrial::GetDefaultPluginsContentSetting() { |
| 44 return IsPluginPowerSaverEnabled() ? |
| 45 ContentSetting::CONTENT_SETTING_DETECT_IMPORTANT_CONTENT : |
| 46 ContentSetting::CONTENT_SETTING_ALLOW; |
| 47 } |
| 48 |
| 49 } // namespace content_settings |
| OLD | NEW |