| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 "chrome/browser/about_flags.h" | 5 #include "chrome/browser/about_flags.h" |
| 6 | 6 |
| 7 #include <iterator> | 7 #include <iterator> |
| 8 #include <map> | 8 #include <map> |
| 9 #include <set> | 9 #include <set> |
| 10 #include <utility> | 10 #include <utility> |
| (...skipping 1986 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1997 { | 1997 { |
| 1998 "enable-plugin-power-saver", | 1998 "enable-plugin-power-saver", |
| 1999 IDS_FLAGS_ENABLE_PLUGIN_POWER_SAVER_NAME, | 1999 IDS_FLAGS_ENABLE_PLUGIN_POWER_SAVER_NAME, |
| 2000 IDS_FLAGS_ENABLE_PLUGIN_POWER_SAVER_DESCRIPTION, | 2000 IDS_FLAGS_ENABLE_PLUGIN_POWER_SAVER_DESCRIPTION, |
| 2001 kOsDesktop, | 2001 kOsDesktop, |
| 2002 SINGLE_VALUE_TYPE(switches::kEnablePluginPowerSaver) | 2002 SINGLE_VALUE_TYPE(switches::kEnablePluginPowerSaver) |
| 2003 }, | 2003 }, |
| 2004 #endif | 2004 #endif |
| 2005 #if defined(OS_CHROMEOS) | 2005 #if defined(OS_CHROMEOS) |
| 2006 { | 2006 { |
| 2007 "enable-remote-assistance", | |
| 2008 IDS_FLAGS_ENABLE_REMOTE_ASSISTANCE_NAME, | |
| 2009 IDS_FLAGS_ENABLE_REMOTE_ASSISTANCE_DESCRIPTION, | |
| 2010 kOsCrOS, | |
| 2011 SINGLE_VALUE_TYPE(extensions::switches::kEnableRemoteAssistance) | |
| 2012 }, | |
| 2013 { | |
| 2014 "disable-new-zip-unpacker", | 2007 "disable-new-zip-unpacker", |
| 2015 IDS_FLAGS_DISABLE_NEW_ZIP_UNPACKER_NAME, | 2008 IDS_FLAGS_DISABLE_NEW_ZIP_UNPACKER_NAME, |
| 2016 IDS_FLAGS_DISABLE_NEW_ZIP_UNPACKER_DESCRIPTION, | 2009 IDS_FLAGS_DISABLE_NEW_ZIP_UNPACKER_DESCRIPTION, |
| 2017 kOsCrOS, | 2010 kOsCrOS, |
| 2018 SINGLE_VALUE_TYPE(chromeos::switches::kDisableNewZIPUnpacker) | 2011 SINGLE_VALUE_TYPE(chromeos::switches::kDisableNewZIPUnpacker) |
| 2019 }, | 2012 }, |
| 2020 #endif // defined(OS_CHROMEOS) | 2013 #endif // defined(OS_CHROMEOS) |
| 2021 { | 2014 { |
| 2022 "ssl-version-min", | 2015 "ssl-version-min", |
| 2023 IDS_FLAGS_SSL_VERSION_MIN_NAME, | 2016 IDS_FLAGS_SSL_VERSION_MIN_NAME, |
| (...skipping 605 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2629 } | 2622 } |
| 2630 | 2623 |
| 2631 const Experiment* GetExperiments(size_t* count) { | 2624 const Experiment* GetExperiments(size_t* count) { |
| 2632 *count = num_experiments; | 2625 *count = num_experiments; |
| 2633 return experiments; | 2626 return experiments; |
| 2634 } | 2627 } |
| 2635 | 2628 |
| 2636 } // namespace testing | 2629 } // namespace testing |
| 2637 | 2630 |
| 2638 } // namespace about_flags | 2631 } // namespace about_flags |
| OLD | NEW |