| 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 655 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 666 kOsDesktop, | 666 kOsDesktop, |
| 667 SINGLE_VALUE_TYPE(switches::kAppsNewInstallBubble) | 667 SINGLE_VALUE_TYPE(switches::kAppsNewInstallBubble) |
| 668 }, | 668 }, |
| 669 { | 669 { |
| 670 "disable-hyperlink-auditing", | 670 "disable-hyperlink-auditing", |
| 671 IDS_FLAGS_DISABLE_HYPERLINK_AUDITING_NAME, | 671 IDS_FLAGS_DISABLE_HYPERLINK_AUDITING_NAME, |
| 672 IDS_FLAGS_DISABLE_HYPERLINK_AUDITING_DESCRIPTION, | 672 IDS_FLAGS_DISABLE_HYPERLINK_AUDITING_DESCRIPTION, |
| 673 kOsAll, | 673 kOsAll, |
| 674 SINGLE_VALUE_TYPE(switches::kNoPings) | 674 SINGLE_VALUE_TYPE(switches::kNoPings) |
| 675 }, | 675 }, |
| 676 { | |
| 677 "tab-groups-context-menu", | |
| 678 IDS_FLAGS_TAB_GROUPS_CONTEXT_MENU_NAME, | |
| 679 IDS_FLAGS_TAB_GROUPS_CONTEXT_MENU_DESCRIPTION, | |
| 680 kOsWin, | |
| 681 SINGLE_VALUE_TYPE(switches::kEnableTabGroupsContextMenu) | |
| 682 }, | |
| 683 #if defined(OS_ANDROID) | 676 #if defined(OS_ANDROID) |
| 684 { | 677 { |
| 685 "enable-new-ntp", | 678 "enable-new-ntp", |
| 686 IDS_FLAGS_ENABLE_NEW_NTP, | 679 IDS_FLAGS_ENABLE_NEW_NTP, |
| 687 IDS_FLAGS_ENABLE_NEW_NTP_DESCRIPTION, | 680 IDS_FLAGS_ENABLE_NEW_NTP_DESCRIPTION, |
| 688 kOsAndroid, | 681 kOsAndroid, |
| 689 ENABLE_DISABLE_VALUE_TYPE(switches::kEnableNewNTP, | 682 ENABLE_DISABLE_VALUE_TYPE(switches::kEnableNewNTP, |
| 690 switches::kDisableNewNTP) | 683 switches::kDisableNewNTP) |
| 691 }, | 684 }, |
| 692 { | 685 { |
| (...skipping 1727 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2420 } | 2413 } |
| 2421 | 2414 |
| 2422 const Experiment* GetExperiments(size_t* count) { | 2415 const Experiment* GetExperiments(size_t* count) { |
| 2423 *count = num_experiments; | 2416 *count = num_experiments; |
| 2424 return experiments; | 2417 return experiments; |
| 2425 } | 2418 } |
| 2426 | 2419 |
| 2427 } // namespace testing | 2420 } // namespace testing |
| 2428 | 2421 |
| 2429 } // namespace about_flags | 2422 } // namespace about_flags |
| OLD | NEW |