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 576 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
587 "disable-hyperlink-auditing", | 587 "disable-hyperlink-auditing", |
588 IDS_FLAGS_DISABLE_HYPERLINK_AUDITING_NAME, | 588 IDS_FLAGS_DISABLE_HYPERLINK_AUDITING_NAME, |
589 IDS_FLAGS_DISABLE_HYPERLINK_AUDITING_DESCRIPTION, | 589 IDS_FLAGS_DISABLE_HYPERLINK_AUDITING_DESCRIPTION, |
590 kOsAll, | 590 kOsAll, |
591 SINGLE_VALUE_TYPE(switches::kNoPings) | 591 SINGLE_VALUE_TYPE(switches::kNoPings) |
592 }, | 592 }, |
593 { | 593 { |
594 "experimental-location-features", // FLAGS:RECORD_UMA | 594 "experimental-location-features", // FLAGS:RECORD_UMA |
595 IDS_FLAGS_EXPERIMENTAL_LOCATION_FEATURES_NAME, | 595 IDS_FLAGS_EXPERIMENTAL_LOCATION_FEATURES_NAME, |
596 IDS_FLAGS_EXPERIMENTAL_LOCATION_FEATURES_DESCRIPTION, | 596 IDS_FLAGS_EXPERIMENTAL_LOCATION_FEATURES_DESCRIPTION, |
597 kOsMac | kOsWin | kOsLinux, // Currently does nothing on CrOS. | 597 kOsMac, |
598 SINGLE_VALUE_TYPE(switches::kExperimentalLocationFeatures) | 598 SINGLE_VALUE_TYPE(switches::kExperimentalLocationFeatures) |
599 }, | 599 }, |
600 { | 600 { |
601 "tab-groups-context-menu", | 601 "tab-groups-context-menu", |
602 IDS_FLAGS_TAB_GROUPS_CONTEXT_MENU_NAME, | 602 IDS_FLAGS_TAB_GROUPS_CONTEXT_MENU_NAME, |
603 IDS_FLAGS_TAB_GROUPS_CONTEXT_MENU_DESCRIPTION, | 603 IDS_FLAGS_TAB_GROUPS_CONTEXT_MENU_DESCRIPTION, |
604 kOsWin, | 604 kOsWin, |
605 SINGLE_VALUE_TYPE(switches::kEnableTabGroupsContextMenu) | 605 SINGLE_VALUE_TYPE(switches::kEnableTabGroupsContextMenu) |
606 }, | 606 }, |
607 { | 607 { |
(...skipping 1483 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2091 } | 2091 } |
2092 | 2092 |
2093 const Experiment* GetExperiments(size_t* count) { | 2093 const Experiment* GetExperiments(size_t* count) { |
2094 *count = num_experiments; | 2094 *count = num_experiments; |
2095 return experiments; | 2095 return experiments; |
2096 } | 2096 } |
2097 | 2097 |
2098 } // namespace testing | 2098 } // namespace testing |
2099 | 2099 |
2100 } // namespace about_flags | 2100 } // namespace about_flags |
OLD | NEW |