| 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 <iterator> | 7 #include <iterator> |
| 8 #include <map> | 8 #include <map> |
| 9 #include <set> | 9 #include <set> |
| 10 #include <utility> | 10 #include <utility> |
| (...skipping 1738 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1749 IDS_FLAGS_ENABLE_INSTANT_SEARCH_CLICKS_NAME, | 1749 IDS_FLAGS_ENABLE_INSTANT_SEARCH_CLICKS_NAME, |
| 1750 IDS_FLAGS_ENABLE_INSTANT_SEARCH_CLICKS_DESCRIPTION, | 1750 IDS_FLAGS_ENABLE_INSTANT_SEARCH_CLICKS_DESCRIPTION, |
| 1751 kOsAndroid, | 1751 kOsAndroid, |
| 1752 SINGLE_VALUE_TYPE(switches::kEnableInstantSearchClicks) | 1752 SINGLE_VALUE_TYPE(switches::kEnableInstantSearchClicks) |
| 1753 }, | 1753 }, |
| 1754 #endif | 1754 #endif |
| 1755 { | 1755 { |
| 1756 "enable-save-password-bubble", | 1756 "enable-save-password-bubble", |
| 1757 IDS_FLAGS_ENABLE_SAVE_PASSWORD_BUBBLE_NAME, | 1757 IDS_FLAGS_ENABLE_SAVE_PASSWORD_BUBBLE_NAME, |
| 1758 IDS_FLAGS_ENABLE_SAVE_PASSWORD_BUBBLE_DESCRIPTION, | 1758 IDS_FLAGS_ENABLE_SAVE_PASSWORD_BUBBLE_DESCRIPTION, |
| 1759 kOsWin | kOsLinux | kOsCrOS, | 1759 kOsWin | kOsLinux | kOsCrOS | kOsMac, |
| 1760 ENABLE_DISABLE_VALUE_TYPE(switches::kEnableSavePasswordBubble, | 1760 ENABLE_DISABLE_VALUE_TYPE(switches::kEnableSavePasswordBubble, |
| 1761 switches::kDisableSavePasswordBubble) | 1761 switches::kDisableSavePasswordBubble) |
| 1762 }, | 1762 }, |
| 1763 #if defined(OS_CHROMEOS) | 1763 #if defined(OS_CHROMEOS) |
| 1764 { | 1764 { |
| 1765 "enable-filemanager-mtp", | 1765 "enable-filemanager-mtp", |
| 1766 IDS_FLAGS_ENABLE_FILE_MANAGER_MTP_NAME, | 1766 IDS_FLAGS_ENABLE_FILE_MANAGER_MTP_NAME, |
| 1767 IDS_FLAGS_ENABLE_FILE_MANAGER_MTP_DESCRIPTION, | 1767 IDS_FLAGS_ENABLE_FILE_MANAGER_MTP_DESCRIPTION, |
| 1768 kOsCrOS, | 1768 kOsCrOS, |
| 1769 MULTI_VALUE_TYPE(kEnableFileManagerMTPChoices) | 1769 MULTI_VALUE_TYPE(kEnableFileManagerMTPChoices) |
| (...skipping 721 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2491 } | 2491 } |
| 2492 | 2492 |
| 2493 const Experiment* GetExperiments(size_t* count) { | 2493 const Experiment* GetExperiments(size_t* count) { |
| 2494 *count = num_experiments; | 2494 *count = num_experiments; |
| 2495 return experiments; | 2495 return experiments; |
| 2496 } | 2496 } |
| 2497 | 2497 |
| 2498 } // namespace testing | 2498 } // namespace testing |
| 2499 | 2499 |
| 2500 } // namespace about_flags | 2500 } // namespace about_flags |
| OLD | NEW |