| 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 1136 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
|  1147   }, |  1147   }, | 
|  1148   { |  1148   { | 
|  1149     "enable-suggestions-service", |  1149     "enable-suggestions-service", | 
|  1150     IDS_FLAGS_ENABLE_SUGGESTIONS_SERVICE_NAME, |  1150     IDS_FLAGS_ENABLE_SUGGESTIONS_SERVICE_NAME, | 
|  1151     IDS_FLAGS_ENABLE_SUGGESTIONS_SERVICE_DESCRIPTION, |  1151     IDS_FLAGS_ENABLE_SUGGESTIONS_SERVICE_DESCRIPTION, | 
|  1152     kOsAndroid | kOsCrOS, |  1152     kOsAndroid | kOsCrOS, | 
|  1153     ENABLE_DISABLE_VALUE_TYPE(switches::kEnableSuggestionsService, |  1153     ENABLE_DISABLE_VALUE_TYPE(switches::kEnableSuggestionsService, | 
|  1154                               switches::kDisableSuggestionsService) |  1154                               switches::kDisableSuggestionsService) | 
|  1155   }, |  1155   }, | 
|  1156   { |  1156   { | 
 |  1157      "enable-suggestions-with-substring-match", | 
 |  1158      IDS_FLAGS_ENABLE_SUGGESTIONS_WITH_SUB_STRING_MATCH_NAME, | 
 |  1159      IDS_FLAGS_ENABLE_SUGGESTIONS_WITH_SUB_STRING_MATCH_DESCRIPTION, | 
 |  1160      kOsAll, | 
 |  1161      SINGLE_VALUE_TYPE( | 
 |  1162              autofill::switches::kEnableSuggestionsWithSubstringMatch) | 
 |  1163   }, | 
 |  1164   { | 
|  1157     "enable-supervised-user-blacklist", |  1165     "enable-supervised-user-blacklist", | 
|  1158     IDS_FLAGS_ENABLE_SUPERVISED_USER_BLACKLIST_NAME, |  1166     IDS_FLAGS_ENABLE_SUPERVISED_USER_BLACKLIST_NAME, | 
|  1159     IDS_FLAGS_ENABLE_SUPERVISED_USER_BLACKLIST_DESCRIPTION, |  1167     IDS_FLAGS_ENABLE_SUPERVISED_USER_BLACKLIST_DESCRIPTION, | 
|  1160     kOsAndroid | kOsMac | kOsWin | kOsLinux | kOsCrOS, |  1168     kOsAndroid | kOsMac | kOsWin | kOsLinux | kOsCrOS, | 
|  1161     ENABLE_DISABLE_VALUE_TYPE(switches::kEnableSupervisedUserBlacklist, |  1169     ENABLE_DISABLE_VALUE_TYPE(switches::kEnableSupervisedUserBlacklist, | 
|  1162                               switches::kDisableSupervisedUserBlacklist) |  1170                               switches::kDisableSupervisedUserBlacklist) | 
|  1163   }, |  1171   }, | 
|  1164   { |  1172   { | 
|  1165     "enable-supervised-user-managed-bookmarks-folder", |  1173     "enable-supervised-user-managed-bookmarks-folder", | 
|  1166     IDS_FLAGS_ENABLE_SUPERVISED_USER_MANAGED_BOOKMARKS_FOLDER_NAME, |  1174     IDS_FLAGS_ENABLE_SUPERVISED_USER_MANAGED_BOOKMARKS_FOLDER_NAME, | 
| (...skipping 1676 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
|  2843 } |  2851 } | 
|  2844  |  2852  | 
|  2845 const Experiment* GetExperiments(size_t* count) { |  2853 const Experiment* GetExperiments(size_t* count) { | 
|  2846   *count = num_experiments; |  2854   *count = num_experiments; | 
|  2847   return experiments; |  2855   return experiments; | 
|  2848 } |  2856 } | 
|  2849  |  2857  | 
|  2850 }  // namespace testing |  2858 }  // namespace testing | 
|  2851  |  2859  | 
|  2852 }  // namespace about_flags |  2860 }  // namespace about_flags | 
| OLD | NEW |