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 2065 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2076 }, | 2076 }, |
2077 #if defined(OS_CHROMEOS) | 2077 #if defined(OS_CHROMEOS) |
2078 { | 2078 { |
2079 "enable-captive-portal-bypass-proxy", | 2079 "enable-captive-portal-bypass-proxy", |
2080 IDS_FLAGS_ENABLE_CAPTIVE_PORTAL_BYPASS_PROXY_NAME, | 2080 IDS_FLAGS_ENABLE_CAPTIVE_PORTAL_BYPASS_PROXY_NAME, |
2081 IDS_FLAGS_ENABLE_CAPTIVE_PORTAL_BYPASS_PROXY_DESCRIPTION, | 2081 IDS_FLAGS_ENABLE_CAPTIVE_PORTAL_BYPASS_PROXY_DESCRIPTION, |
2082 kOsCrOS, | 2082 kOsCrOS, |
2083 SINGLE_VALUE_TYPE(chromeos::switches::kEnableCaptivePortalBypassProxy) | 2083 SINGLE_VALUE_TYPE(chromeos::switches::kEnableCaptivePortalBypassProxy) |
2084 }, | 2084 }, |
2085 { | 2085 { |
2086 "enable-roboto-font-ui", | 2086 "disable-roboto-font-ui", |
2087 IDS_FLAGS_ENABLE_ROBOTO_FONT_UI_NAME, | 2087 IDS_FLAGS_DISABLE_ROBOTO_FONT_UI_NAME, |
2088 IDS_FLAGS_ENABLE_ROBOTO_FONT_UI_DESCRIPTION, | 2088 IDS_FLAGS_DISABLE_ROBOTO_FONT_UI_DESCRIPTION, |
2089 kOsCrOS, | 2089 kOsCrOS, |
2090 SINGLE_VALUE_TYPE(switches::kEnableRobotoFontUI) | 2090 SINGLE_VALUE_TYPE(switches::kDisableRobotoFontUI) |
2091 }, | 2091 }, |
2092 #endif // defined(OS_CHROMEOS) | 2092 #endif // defined(OS_CHROMEOS) |
2093 #if defined(OS_ANDROID) | 2093 #if defined(OS_ANDROID) |
2094 { | 2094 { |
2095 "enable-seccomp-filter-sandbox", | 2095 "enable-seccomp-filter-sandbox", |
2096 IDS_FLAGS_ENABLE_SECCOMP_FILTER_SANDBOX_ANDROID_NAME, | 2096 IDS_FLAGS_ENABLE_SECCOMP_FILTER_SANDBOX_ANDROID_NAME, |
2097 IDS_FLAGS_ENABLE_SECCOMP_FILTER_SANDBOX_ANDROID_DESCRIPTION, | 2097 IDS_FLAGS_ENABLE_SECCOMP_FILTER_SANDBOX_ANDROID_DESCRIPTION, |
2098 kOsAndroid, | 2098 kOsAndroid, |
2099 SINGLE_VALUE_TYPE(switches::kEnableSeccompFilterSandbox) | 2099 SINGLE_VALUE_TYPE(switches::kEnableSeccompFilterSandbox) |
2100 }, | 2100 }, |
(...skipping 623 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2724 } | 2724 } |
2725 | 2725 |
2726 const Experiment* GetExperiments(size_t* count) { | 2726 const Experiment* GetExperiments(size_t* count) { |
2727 *count = num_experiments; | 2727 *count = num_experiments; |
2728 return experiments; | 2728 return experiments; |
2729 } | 2729 } |
2730 | 2730 |
2731 } // namespace testing | 2731 } // namespace testing |
2732 | 2732 |
2733 } // namespace about_flags | 2733 } // namespace about_flags |
OLD | NEW |