| 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 2175 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2186 kOsDesktop, | 2186 kOsDesktop, |
| 2187 SINGLE_VALUE_TYPE(switches::kEnableDelayAgnosticAec) | 2187 SINGLE_VALUE_TYPE(switches::kEnableDelayAgnosticAec) |
| 2188 }, | 2188 }, |
| 2189 { | 2189 { |
| 2190 "mark-non-secure-as", // FLAGS:RECORD_UMA | 2190 "mark-non-secure-as", // FLAGS:RECORD_UMA |
| 2191 IDS_MARK_NON_SECURE_AS_NAME, | 2191 IDS_MARK_NON_SECURE_AS_NAME, |
| 2192 IDS_MARK_NON_SECURE_AS_DESCRIPTION, | 2192 IDS_MARK_NON_SECURE_AS_DESCRIPTION, |
| 2193 kOsAll, | 2193 kOsAll, |
| 2194 MULTI_VALUE_TYPE(kMarkNonSecureAsChoices) | 2194 MULTI_VALUE_TYPE(kMarkNonSecureAsChoices) |
| 2195 }, | 2195 }, |
| 2196 #if defined(OS_ANDROID) |
| 2197 { |
| 2198 "enable-cursor-anchor-info", |
| 2199 IDS_FLAGS_ENABLE_CURSOR_ANCHOR_INFO_NAME, |
| 2200 IDS_FLAGS_ENABLE_CURSOR_ANCHOR_INFO_DESCRIPTION, |
| 2201 kOsAndroid, |
| 2202 SINGLE_VALUE_TYPE(switches::kEnableCursorAnchorInfo) |
| 2203 }, |
| 2204 #endif |
| 2196 { | 2205 { |
| 2197 "enable-site-per-process", | 2206 "enable-site-per-process", |
| 2198 IDS_FLAGS_ENABLE_SITE_PER_PROCESS_NAME, | 2207 IDS_FLAGS_ENABLE_SITE_PER_PROCESS_NAME, |
| 2199 IDS_FLAGS_ENABLE_SITE_PER_PROCESS_DESCRIPTION, | 2208 IDS_FLAGS_ENABLE_SITE_PER_PROCESS_DESCRIPTION, |
| 2200 kOsAll, | 2209 kOsAll, |
| 2201 SINGLE_VALUE_TYPE(switches::kSitePerProcess) | 2210 SINGLE_VALUE_TYPE(switches::kSitePerProcess) |
| 2202 }, | 2211 }, |
| 2203 #if defined(OS_MACOSX) | 2212 #if defined(OS_MACOSX) |
| 2204 { | 2213 { |
| 2205 "enable-harfbuzz-rendertext", | 2214 "enable-harfbuzz-rendertext", |
| (...skipping 727 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2933 } | 2942 } |
| 2934 | 2943 |
| 2935 const Experiment* GetExperiments(size_t* count) { | 2944 const Experiment* GetExperiments(size_t* count) { |
| 2936 *count = num_experiments; | 2945 *count = num_experiments; |
| 2937 return experiments; | 2946 return experiments; |
| 2938 } | 2947 } |
| 2939 | 2948 |
| 2940 } // namespace testing | 2949 } // namespace testing |
| 2941 | 2950 |
| 2942 } // namespace about_flags | 2951 } // namespace about_flags |
| OLD | NEW |