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 1752 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1763 kOsAndroid, | 1763 kOsAndroid, |
1764 SINGLE_VALUE_TYPE(switches::kEnableBleedingEdgeRenderingFastPaths) | 1764 SINGLE_VALUE_TYPE(switches::kEnableBleedingEdgeRenderingFastPaths) |
1765 }, | 1765 }, |
1766 { | 1766 { |
1767 "enable-settings-window", | 1767 "enable-settings-window", |
1768 IDS_FLAGS_ENABLE_SETTINGS_WINDOW_NAME, | 1768 IDS_FLAGS_ENABLE_SETTINGS_WINDOW_NAME, |
1769 IDS_FLAGS_ENABLE_SETTINGS_WINDOW_DESCRIPTION, | 1769 IDS_FLAGS_ENABLE_SETTINGS_WINDOW_DESCRIPTION, |
1770 kOsDesktop, | 1770 kOsDesktop, |
1771 SINGLE_VALUE_TYPE(switches::kEnableSettingsWindow) | 1771 SINGLE_VALUE_TYPE(switches::kEnableSettingsWindow) |
1772 }, | 1772 }, |
1773 #if defined(OS_ANDROID) | |
1774 { | |
1775 "enable-instant-search-clicks", | |
1776 IDS_FLAGS_ENABLE_INSTANT_SEARCH_CLICKS_NAME, | |
1777 IDS_FLAGS_ENABLE_INSTANT_SEARCH_CLICKS_DESCRIPTION, | |
1778 kOsAndroid, | |
1779 SINGLE_VALUE_TYPE(switches::kEnableInstantSearchClicks) | |
1780 }, | |
1781 #endif | |
1782 { | 1773 { |
1783 "enable-save-password-bubble", | 1774 "enable-save-password-bubble", |
1784 IDS_FLAGS_ENABLE_SAVE_PASSWORD_BUBBLE_NAME, | 1775 IDS_FLAGS_ENABLE_SAVE_PASSWORD_BUBBLE_NAME, |
1785 IDS_FLAGS_ENABLE_SAVE_PASSWORD_BUBBLE_DESCRIPTION, | 1776 IDS_FLAGS_ENABLE_SAVE_PASSWORD_BUBBLE_DESCRIPTION, |
1786 kOsWin | kOsLinux | kOsCrOS, | 1777 kOsWin | kOsLinux | kOsCrOS, |
1787 ENABLE_DISABLE_VALUE_TYPE(switches::kEnableSavePasswordBubble, | 1778 ENABLE_DISABLE_VALUE_TYPE(switches::kEnableSavePasswordBubble, |
1788 switches::kDisableSavePasswordBubble) | 1779 switches::kDisableSavePasswordBubble) |
1789 }, | 1780 }, |
1790 #if defined(GOOGLE_CHROME_BUILD) | 1781 #if defined(GOOGLE_CHROME_BUILD) |
1791 { | 1782 { |
(...skipping 609 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2401 } | 2392 } |
2402 | 2393 |
2403 const Experiment* GetExperiments(size_t* count) { | 2394 const Experiment* GetExperiments(size_t* count) { |
2404 *count = num_experiments; | 2395 *count = num_experiments; |
2405 return experiments; | 2396 return experiments; |
2406 } | 2397 } |
2407 | 2398 |
2408 } // namespace testing | 2399 } // namespace testing |
2409 | 2400 |
2410 } // namespace about_flags | 2401 } // namespace about_flags |
OLD | NEW |