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 1218 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1229 }, | 1229 }, |
1230 { | 1230 { |
1231 "enable-suggestions-service", | 1231 "enable-suggestions-service", |
1232 IDS_FLAGS_ENABLE_SUGGESTIONS_SERVICE_NAME, | 1232 IDS_FLAGS_ENABLE_SUGGESTIONS_SERVICE_NAME, |
1233 IDS_FLAGS_ENABLE_SUGGESTIONS_SERVICE_DESCRIPTION, | 1233 IDS_FLAGS_ENABLE_SUGGESTIONS_SERVICE_DESCRIPTION, |
1234 kOsAndroid | kOsCrOS, | 1234 kOsAndroid | kOsCrOS, |
1235 ENABLE_DISABLE_VALUE_TYPE(switches::kEnableSuggestionsService, | 1235 ENABLE_DISABLE_VALUE_TYPE(switches::kEnableSuggestionsService, |
1236 switches::kDisableSuggestionsService) | 1236 switches::kDisableSuggestionsService) |
1237 }, | 1237 }, |
1238 { | 1238 { |
| 1239 "enable-suggestions-with-substring-match", |
| 1240 IDS_FLAGS_ENABLE_SUGGESTIONS_WITH_SUB_STRING_MATCH_NAME, |
| 1241 IDS_FLAGS_ENABLE_SUGGESTIONS_WITH_SUB_STRING_MATCH_DESCRIPTION, |
| 1242 kOsAll, |
| 1243 SINGLE_VALUE_TYPE( |
| 1244 autofill::switches::kEnableSuggestionsWithSubstringMatch) |
| 1245 }, |
| 1246 { |
1239 "enable-supervised-user-managed-bookmarks-folder", | 1247 "enable-supervised-user-managed-bookmarks-folder", |
1240 IDS_FLAGS_ENABLE_SUPERVISED_USER_MANAGED_BOOKMARKS_FOLDER_NAME, | 1248 IDS_FLAGS_ENABLE_SUPERVISED_USER_MANAGED_BOOKMARKS_FOLDER_NAME, |
1241 IDS_FLAGS_ENABLE_SUPERVISED_USER_MANAGED_BOOKMARKS_FOLDER_DESCRIPTION, | 1249 IDS_FLAGS_ENABLE_SUPERVISED_USER_MANAGED_BOOKMARKS_FOLDER_DESCRIPTION, |
1242 kOsAndroid | kOsMac | kOsWin | kOsLinux | kOsCrOS, | 1250 kOsAndroid | kOsMac | kOsWin | kOsLinux | kOsCrOS, |
1243 SINGLE_VALUE_TYPE(switches::kEnableSupervisedUserManagedBookmarksFolder) | 1251 SINGLE_VALUE_TYPE(switches::kEnableSupervisedUserManagedBookmarksFolder) |
1244 }, | 1252 }, |
1245 #if defined(ENABLE_APP_LIST) | 1253 #if defined(ENABLE_APP_LIST) |
1246 { | 1254 { |
1247 "enable-sync-app-list", | 1255 "enable-sync-app-list", |
1248 IDS_FLAGS_ENABLE_SYNC_APP_LIST_NAME, | 1256 IDS_FLAGS_ENABLE_SYNC_APP_LIST_NAME, |
(...skipping 1765 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3014 } | 3022 } |
3015 | 3023 |
3016 const Experiment* GetExperiments(size_t* count) { | 3024 const Experiment* GetExperiments(size_t* count) { |
3017 *count = num_experiments; | 3025 *count = num_experiments; |
3018 return experiments; | 3026 return experiments; |
3019 } | 3027 } |
3020 | 3028 |
3021 } // namespace testing | 3029 } // namespace testing |
3022 | 3030 |
3023 } // namespace about_flags | 3031 } // namespace about_flags |
OLD | NEW |