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 2083 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2094 }, | 2094 }, |
2095 #if defined(OS_CHROMEOS) | 2095 #if defined(OS_CHROMEOS) |
2096 { | 2096 { |
2097 "enable-captive-portal-bypass-proxy", | 2097 "enable-captive-portal-bypass-proxy", |
2098 IDS_FLAGS_ENABLE_CAPTIVE_PORTAL_BYPASS_PROXY_NAME, | 2098 IDS_FLAGS_ENABLE_CAPTIVE_PORTAL_BYPASS_PROXY_NAME, |
2099 IDS_FLAGS_ENABLE_CAPTIVE_PORTAL_BYPASS_PROXY_DESCRIPTION, | 2099 IDS_FLAGS_ENABLE_CAPTIVE_PORTAL_BYPASS_PROXY_DESCRIPTION, |
2100 kOsCrOS, | 2100 kOsCrOS, |
2101 SINGLE_VALUE_TYPE(chromeos::switches::kEnableCaptivePortalBypassProxy) | 2101 SINGLE_VALUE_TYPE(chromeos::switches::kEnableCaptivePortalBypassProxy) |
2102 }, | 2102 }, |
2103 { | 2103 { |
2104 "enable-roboto-font-ui", | 2104 "disable-roboto-font-ui", |
2105 IDS_FLAGS_ENABLE_ROBOTO_FONT_UI_NAME, | 2105 IDS_FLAGS_DISABLE_ROBOTO_FONT_UI_NAME, |
2106 IDS_FLAGS_ENABLE_ROBOTO_FONT_UI_DESCRIPTION, | 2106 IDS_FLAGS_DISABLE_ROBOTO_FONT_UI_DESCRIPTION, |
2107 kOsCrOS, | 2107 kOsCrOS, |
2108 SINGLE_VALUE_TYPE(switches::kEnableRobotoFontUI) | 2108 SINGLE_VALUE_TYPE(switches::kDisableRobotoFontUI) |
2109 }, | 2109 }, |
2110 #endif // defined(OS_CHROMEOS) | 2110 #endif // defined(OS_CHROMEOS) |
2111 #if defined(OS_ANDROID) | 2111 #if defined(OS_ANDROID) |
2112 { | 2112 { |
2113 "enable-seccomp-filter-sandbox", | 2113 "enable-seccomp-filter-sandbox", |
2114 IDS_FLAGS_ENABLE_SECCOMP_FILTER_SANDBOX_ANDROID_NAME, | 2114 IDS_FLAGS_ENABLE_SECCOMP_FILTER_SANDBOX_ANDROID_NAME, |
2115 IDS_FLAGS_ENABLE_SECCOMP_FILTER_SANDBOX_ANDROID_DESCRIPTION, | 2115 IDS_FLAGS_ENABLE_SECCOMP_FILTER_SANDBOX_ANDROID_DESCRIPTION, |
2116 kOsAndroid, | 2116 kOsAndroid, |
2117 SINGLE_VALUE_TYPE(switches::kEnableSeccompFilterSandbox) | 2117 SINGLE_VALUE_TYPE(switches::kEnableSeccompFilterSandbox) |
2118 }, | 2118 }, |
(...skipping 607 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2726 } | 2726 } |
2727 | 2727 |
2728 const Experiment* GetExperiments(size_t* count) { | 2728 const Experiment* GetExperiments(size_t* count) { |
2729 *count = num_experiments; | 2729 *count = num_experiments; |
2730 return experiments; | 2730 return experiments; |
2731 } | 2731 } |
2732 | 2732 |
2733 } // namespace testing | 2733 } // namespace testing |
2734 | 2734 |
2735 } // namespace about_flags | 2735 } // namespace about_flags |
OLD | NEW |