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 <algorithm> | 7 #include <algorithm> |
8 #include <iterator> | 8 #include <iterator> |
9 #include <map> | 9 #include <map> |
10 #include <set> | 10 #include <set> |
(...skipping 1195 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1206 SINGLE_VALUE_TYPE(switches::kDebugPackedApps) | 1206 SINGLE_VALUE_TYPE(switches::kDebugPackedApps) |
1207 }, | 1207 }, |
1208 { | 1208 { |
1209 "enable-password-generation", | 1209 "enable-password-generation", |
1210 IDS_FLAGS_ENABLE_PASSWORD_GENERATION_NAME, | 1210 IDS_FLAGS_ENABLE_PASSWORD_GENERATION_NAME, |
1211 IDS_FLAGS_ENABLE_PASSWORD_GENERATION_DESCRIPTION, | 1211 IDS_FLAGS_ENABLE_PASSWORD_GENERATION_DESCRIPTION, |
1212 kOsDesktop, | 1212 kOsDesktop, |
1213 SINGLE_VALUE_TYPE(switches::kEnablePasswordGeneration) | 1213 SINGLE_VALUE_TYPE(switches::kEnablePasswordGeneration) |
1214 }, | 1214 }, |
1215 { | 1215 { |
1216 "enable-people-search", | |
1217 IDS_FLAGS_ENABLE_PEOPLE_SEARCH_NAME, | |
1218 IDS_FLAGS_ENABLE_PEOPLE_SEARCH_DESCRIPTION, | |
1219 kOsDesktop, | |
xiyuan
2013/09/04 23:15:41
Note that app list does not exist for linux build.
rkc
2013/09/04 23:48:02
Done.
| |
1220 SINGLE_VALUE_TYPE(switches::kEnablePeopleSearch) | |
1221 }, | |
1222 { | |
1216 "password-autofill-public-suffix-domain-matching", | 1223 "password-autofill-public-suffix-domain-matching", |
1217 IDS_FLAGS_PASSWORD_AUTOFILL_PUBLIC_SUFFIX_DOMAIN_MATCHING_NAME, | 1224 IDS_FLAGS_PASSWORD_AUTOFILL_PUBLIC_SUFFIX_DOMAIN_MATCHING_NAME, |
1218 IDS_FLAGS_PASSWORD_AUTOFILL_PUBLIC_SUFFIX_DOMAIN_MATCHING_DESCRIPTION, | 1225 IDS_FLAGS_PASSWORD_AUTOFILL_PUBLIC_SUFFIX_DOMAIN_MATCHING_DESCRIPTION, |
1219 kOsAndroid, | 1226 kOsAndroid, |
1220 ENABLE_DISABLE_VALUE_TYPE( | 1227 ENABLE_DISABLE_VALUE_TYPE( |
1221 switches::kEnablePasswordAutofillPublicSuffixDomainMatching, | 1228 switches::kEnablePasswordAutofillPublicSuffixDomainMatching, |
1222 switches::kDisablePasswordAutofillPublicSuffixDomainMatching) | 1229 switches::kDisablePasswordAutofillPublicSuffixDomainMatching) |
1223 }, | 1230 }, |
1224 { | 1231 { |
1225 "enable-deferred-image-decoding", | 1232 "enable-deferred-image-decoding", |
(...skipping 909 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
2135 } | 2142 } |
2136 | 2143 |
2137 const Experiment* GetExperiments(size_t* count) { | 2144 const Experiment* GetExperiments(size_t* count) { |
2138 *count = num_experiments; | 2145 *count = num_experiments; |
2139 return experiments; | 2146 return experiments; |
2140 } | 2147 } |
2141 | 2148 |
2142 } // namespace testing | 2149 } // namespace testing |
2143 | 2150 |
2144 } // namespace about_flags | 2151 } // namespace about_flags |
OLD | NEW |