| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 232 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 243 SINGLE_VALUE_TYPE(switches::kFocusExistingTabOnOpen) | 243 SINGLE_VALUE_TYPE(switches::kFocusExistingTabOnOpen) |
| 244 }, | 244 }, |
| 245 { | 245 { |
| 246 "tab-groups-context-menu", | 246 "tab-groups-context-menu", |
| 247 IDS_FLAGS_TAB_GROUPS_CONTEXT_MENU_NAME, | 247 IDS_FLAGS_TAB_GROUPS_CONTEXT_MENU_NAME, |
| 248 IDS_FLAGS_TAB_GROUPS_CONTEXT_MENU_DESCRIPTION, | 248 IDS_FLAGS_TAB_GROUPS_CONTEXT_MENU_DESCRIPTION, |
| 249 kOsWin, | 249 kOsWin, |
| 250 SINGLE_VALUE_TYPE(switches::kEnableTabGroupsContextMenu) | 250 SINGLE_VALUE_TYPE(switches::kEnableTabGroupsContextMenu) |
| 251 }, | 251 }, |
| 252 { | 252 { |
| 253 "ppapi-flash-in-process", | |
| 254 IDS_FLAGS_PPAPI_FLASH_IN_PROCESS_NAME, | |
| 255 IDS_FLAGS_PPAPI_FLASH_IN_PROCESS_DESCRIPTION, | |
| 256 kOsAll, | |
| 257 SINGLE_VALUE_TYPE(switches::kPpapiFlashInProcess) | |
| 258 }, | |
| 259 { | |
| 260 "preload-instant-search", | 253 "preload-instant-search", |
| 261 IDS_FLAGS_PRELOAD_INSTANT_SEARCH_NAME, | 254 IDS_FLAGS_PRELOAD_INSTANT_SEARCH_NAME, |
| 262 IDS_FLAGS_PRELOAD_INSTANT_SEARCH_DESCRIPTION, | 255 IDS_FLAGS_PRELOAD_INSTANT_SEARCH_DESCRIPTION, |
| 263 kOsAll, | 256 kOsAll, |
| 264 SINGLE_VALUE_TYPE(switches::kPreloadInstantSearch) | 257 SINGLE_VALUE_TYPE(switches::kPreloadInstantSearch) |
| 265 }, | 258 }, |
| 266 { | 259 { |
| 267 "static-ip-config", | 260 "static-ip-config", |
| 268 IDS_FLAGS_STATIC_IP_CONFIG_NAME, | 261 IDS_FLAGS_STATIC_IP_CONFIG_NAME, |
| 269 IDS_FLAGS_STATIC_IP_CONFIG_DESCRIPTION, | 262 IDS_FLAGS_STATIC_IP_CONFIG_DESCRIPTION, |
| (...skipping 593 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 863 } | 856 } |
| 864 | 857 |
| 865 const Experiment* GetExperiments(size_t* count) { | 858 const Experiment* GetExperiments(size_t* count) { |
| 866 *count = num_experiments; | 859 *count = num_experiments; |
| 867 return experiments; | 860 return experiments; |
| 868 } | 861 } |
| 869 | 862 |
| 870 } // namespace testing | 863 } // namespace testing |
| 871 | 864 |
| 872 } // namespace about_flags | 865 } // namespace about_flags |
| OLD | NEW |