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