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

Side by Side Diff: components/content_settings/core/browser/plugins_field_trial.cc

Issue 1112723002: Add a field trial to enable plugin power saver for all users. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 7 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 unified diff | Download patch
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 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 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "components/content_settings/core/browser/plugins_field_trial.h" 5 #include "components/content_settings/core/browser/plugins_field_trial.h"
6 6
7 #include "base/command_line.h" 7 #include "base/command_line.h"
8 #include "base/metrics/field_trial.h" 8 #include "base/metrics/field_trial.h"
9 #include "components/plugins/common/plugins_switches.h" 9 #include "components/plugins/common/plugins_switches.h"
10 10
11 namespace content_settings { 11 namespace content_settings {
12 12
13 // static 13 // static
14 const char PluginsFieldTrial::kFieldTrialName[] = "ForcePluginPowerSaver"; 14 const char PluginsFieldTrial::kEnableFieldTrial[] = "PluginPowerSaver";
tommycli 2015/04/28 21:57:56 Add a TODO to remove the redundant one when we're
Dan Beam 2015/04/28 22:17:55 Done. (in the header)
15 const char PluginsFieldTrial::kForceFieldTrial[] = "ForcePluginPowerSaver";
15 16
16 // static 17 // static
17 ContentSetting PluginsFieldTrial::EffectiveContentSetting( 18 ContentSetting PluginsFieldTrial::EffectiveContentSetting(
18 ContentSettingsType type, 19 ContentSettingsType type,
19 ContentSetting setting) { 20 ContentSetting setting) {
20 if (type != CONTENT_SETTINGS_TYPE_PLUGINS) 21 if (type != CONTENT_SETTINGS_TYPE_PLUGINS)
21 return setting; 22 return setting;
22 23
23 // For Plugins, ASK is obsolete. Show as BLOCK to reflect actual behavior. 24 // For Plugins, ASK is obsolete. Show as BLOCK to reflect actual behavior.
24 if (setting == ContentSetting::CONTENT_SETTING_ASK) 25 if (setting == ContentSetting::CONTENT_SETTING_ASK)
25 return ContentSetting::CONTENT_SETTING_BLOCK; 26 return ContentSetting::CONTENT_SETTING_BLOCK;
26 27
27 return setting; 28 return setting;
28 } 29 }
29 30
30 // static 31 // static
31 bool PluginsFieldTrial::IsPluginPowerSaverEnabled() { 32 bool PluginsFieldTrial::IsPluginPowerSaverEnabled() {
32 const base::CommandLine* cl = base::CommandLine::ForCurrentProcess(); 33 const base::CommandLine* cl = base::CommandLine::ForCurrentProcess();
33 if (cl->HasSwitch(plugins::switches::kDisablePluginPowerSaver)) 34 if (cl->HasSwitch(plugins::switches::kDisablePluginPowerSaver))
34 return false; 35 return false;
35 if (cl->HasSwitch(plugins::switches::kEnablePluginPowerSaver)) 36 if (cl->HasSwitch(plugins::switches::kEnablePluginPowerSaver))
36 return true; 37 return true;
37 38
38 std::string group_name = base::FieldTrialList::FindFullName(kFieldTrialName); 39 std::string group = base::FieldTrialList::FindFullName(kEnableFieldTrial);
39 return !group_name.empty() && group_name != "Disabled"; 40 if (!group.empty() && group != "Disabled")
41 return true;
42
43 group = base::FieldTrialList::FindFullName(kForceFieldTrial);
44 if (!group.empty() && group != "Disabled")
45 return true;
46
47 return false;
40 } 48 }
41 49
42 // static 50 // static
43 ContentSetting PluginsFieldTrial::GetDefaultPluginsContentSetting() { 51 ContentSetting PluginsFieldTrial::GetDefaultPluginsContentSetting() {
44 return IsPluginPowerSaverEnabled() ? 52 return IsPluginPowerSaverEnabled() ?
45 ContentSetting::CONTENT_SETTING_DETECT_IMPORTANT_CONTENT : 53 ContentSetting::CONTENT_SETTING_DETECT_IMPORTANT_CONTENT :
46 ContentSetting::CONTENT_SETTING_ALLOW; 54 ContentSetting::CONTENT_SETTING_ALLOW;
47 } 55 }
48 56
49 } // namespace content_settings 57 } // namespace content_settings
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698