| 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 219 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 230 SINGLE_VALUE_TYPE(switches::kDisableInteractiveFormValidation) | 230 SINGLE_VALUE_TYPE(switches::kDisableInteractiveFormValidation) |
| 231 }, | 231 }, |
| 232 { | 232 { |
| 233 "focus-existing-tab-on-open", // FLAGS:RECORD_UMA | 233 "focus-existing-tab-on-open", // FLAGS:RECORD_UMA |
| 234 IDS_FLAGS_FOCUS_EXISTING_TAB_ON_OPEN_NAME, | 234 IDS_FLAGS_FOCUS_EXISTING_TAB_ON_OPEN_NAME, |
| 235 IDS_FLAGS_FOCUS_EXISTING_TAB_ON_OPEN_DESCRIPTION, | 235 IDS_FLAGS_FOCUS_EXISTING_TAB_ON_OPEN_DESCRIPTION, |
| 236 kOsAll, | 236 kOsAll, |
| 237 SINGLE_VALUE_TYPE(switches::kFocusExistingTabOnOpen) | 237 SINGLE_VALUE_TYPE(switches::kFocusExistingTabOnOpen) |
| 238 }, | 238 }, |
| 239 { | 239 { |
| 240 "new-tab-page-4", | |
| 241 IDS_FLAGS_NEW_TAB_PAGE_4_NAME, | |
| 242 IDS_FLAGS_NEW_TAB_PAGE_4_DESCRIPTION, | |
| 243 kOsAll, | |
| 244 SINGLE_VALUE_TYPE(switches::kNewTabPage4) | |
| 245 }, | |
| 246 { | |
| 247 "tab-groups-context-menu", | 240 "tab-groups-context-menu", |
| 248 IDS_FLAGS_TAB_GROUPS_CONTEXT_MENU_NAME, | 241 IDS_FLAGS_TAB_GROUPS_CONTEXT_MENU_NAME, |
| 249 IDS_FLAGS_TAB_GROUPS_CONTEXT_MENU_DESCRIPTION, | 242 IDS_FLAGS_TAB_GROUPS_CONTEXT_MENU_DESCRIPTION, |
| 250 kOsWin, | 243 kOsWin, |
| 251 SINGLE_VALUE_TYPE(switches::kEnableTabGroupsContextMenu) | 244 SINGLE_VALUE_TYPE(switches::kEnableTabGroupsContextMenu) |
| 252 }, | 245 }, |
| 253 { | 246 { |
| 254 "ppapi-flash-in-process", | 247 "ppapi-flash-in-process", |
| 255 IDS_FLAGS_PPAPI_FLASH_IN_PROCESS_NAME, | 248 IDS_FLAGS_PPAPI_FLASH_IN_PROCESS_NAME, |
| 256 IDS_FLAGS_PPAPI_FLASH_IN_PROCESS_DESCRIPTION, | 249 IDS_FLAGS_PPAPI_FLASH_IN_PROCESS_DESCRIPTION, |
| (...skipping 531 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 788 } | 781 } |
| 789 | 782 |
| 790 const Experiment* GetExperiments(size_t* count) { | 783 const Experiment* GetExperiments(size_t* count) { |
| 791 *count = num_experiments; | 784 *count = num_experiments; |
| 792 return experiments; | 785 return experiments; |
| 793 } | 786 } |
| 794 | 787 |
| 795 } // namespace testing | 788 } // namespace testing |
| 796 | 789 |
| 797 } // namespace about_flags | 790 } // namespace about_flags |
| OLD | NEW |