| 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/common/content_settings_switches.h" |
| 6 |
| 7 namespace content_settings { |
| 8 namespace switches { |
| 9 |
| 10 // Disables forcing on the experimental Plugin Power Saver feature. |
| 11 const char kDisablePluginPowerSaver[] = "disable-plugin-power-saver"; |
| 12 |
| 13 // Enables forcing on the experimental Plugin Power Saver feature. |
| 14 const char kEnablePluginPowerSaver[] = "enable-plugin-power-saver"; |
| 15 |
| 16 } // namespace switches |
| 17 } // namespace content_settings |
| OLD | NEW |