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 340 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
351 SINGLE_VALUE_TYPE(switches::kExperimentalLocationFeatures) | 351 SINGLE_VALUE_TYPE(switches::kExperimentalLocationFeatures) |
352 }, | 352 }, |
353 { | 353 { |
354 "disable-interactive-form-validation", | 354 "disable-interactive-form-validation", |
355 IDS_FLAGS_DISABLE_INTERACTIVE_FORM_VALIDATION_NAME, | 355 IDS_FLAGS_DISABLE_INTERACTIVE_FORM_VALIDATION_NAME, |
356 IDS_FLAGS_DISABLE_INTERACTIVE_FORM_VALIDATION_DESCRIPTION, | 356 IDS_FLAGS_DISABLE_INTERACTIVE_FORM_VALIDATION_DESCRIPTION, |
357 kOsAll, | 357 kOsAll, |
358 SINGLE_VALUE_TYPE(switches::kDisableInteractiveFormValidation) | 358 SINGLE_VALUE_TYPE(switches::kDisableInteractiveFormValidation) |
359 }, | 359 }, |
360 { | 360 { |
361 "focus-existing-tab-on-open", // FLAGS:RECORD_UMA | |
362 IDS_FLAGS_FOCUS_EXISTING_TAB_ON_OPEN_NAME, | |
363 IDS_FLAGS_FOCUS_EXISTING_TAB_ON_OPEN_DESCRIPTION, | |
364 kOsAll, | |
365 SINGLE_VALUE_TYPE(switches::kFocusExistingTabOnOpen) | |
366 }, | |
367 { | |
368 "tab-groups-context-menu", | 361 "tab-groups-context-menu", |
369 IDS_FLAGS_TAB_GROUPS_CONTEXT_MENU_NAME, | 362 IDS_FLAGS_TAB_GROUPS_CONTEXT_MENU_NAME, |
370 IDS_FLAGS_TAB_GROUPS_CONTEXT_MENU_DESCRIPTION, | 363 IDS_FLAGS_TAB_GROUPS_CONTEXT_MENU_DESCRIPTION, |
371 kOsWin, | 364 kOsWin, |
372 SINGLE_VALUE_TYPE(switches::kEnableTabGroupsContextMenu) | 365 SINGLE_VALUE_TYPE(switches::kEnableTabGroupsContextMenu) |
373 }, | 366 }, |
374 #if defined(OS_CHROMEOS) | 367 #if defined(OS_CHROMEOS) |
375 { | 368 { |
376 "enable-instant-extended-api", | 369 "enable-instant-extended-api", |
377 IDS_FLAGS_ENABLE_INSTANT_EXTENDED_API, | 370 IDS_FLAGS_ENABLE_INSTANT_EXTENDED_API, |
(...skipping 882 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1260 } | 1253 } |
1261 | 1254 |
1262 const Experiment* GetExperiments(size_t* count) { | 1255 const Experiment* GetExperiments(size_t* count) { |
1263 *count = num_experiments; | 1256 *count = num_experiments; |
1264 return experiments; | 1257 return experiments; |
1265 } | 1258 } |
1266 | 1259 |
1267 } // namespace testing | 1260 } // namespace testing |
1268 | 1261 |
1269 } // namespace about_flags | 1262 } // namespace about_flags |
OLD | NEW |