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 667 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
678 }, | 678 }, |
679 { | 679 { |
680 "enable-gesture-tap-highlight", | 680 "enable-gesture-tap-highlight", |
681 IDS_FLAGS_ENABLE_GESTURE_TAP_HIGHLIGHTING_NAME, | 681 IDS_FLAGS_ENABLE_GESTURE_TAP_HIGHLIGHTING_NAME, |
682 IDS_FLAGS_ENABLE_GESTURE_TAP_HIGHLIGHTING_DESCRIPTION, | 682 IDS_FLAGS_ENABLE_GESTURE_TAP_HIGHLIGHTING_DESCRIPTION, |
683 kOsLinux | kOsCrOS, | 683 kOsLinux | kOsCrOS, |
684 ENABLE_DISABLE_VALUE_TYPE(switches::kEnableGestureTapHighlight, | 684 ENABLE_DISABLE_VALUE_TYPE(switches::kEnableGestureTapHighlight, |
685 switches::kDisableGestureTapHighlight) | 685 switches::kDisableGestureTapHighlight) |
686 }, | 686 }, |
687 { | 687 { |
688 "enable-ordered-ime-processing", | |
jamesr
2013/07/10 20:26:19
why do you need an about:flags entry for this? whe
| |
689 IDS_FLAGS_ENABLE_ORDERED_IME_PROCESSING_NAME, | |
690 IDS_FLAGS_ENABLE_ORDERED_IME_PROCESSING_DESCRIPTION, | |
691 kOsAndroid, | |
692 SINGLE_VALUE_TYPE(switches::kEnableOrderedImeProcessing) | |
693 }, | |
694 { | |
688 "enable-smooth-scrolling", // FLAGS:RECORD_UMA | 695 "enable-smooth-scrolling", // FLAGS:RECORD_UMA |
689 IDS_FLAGS_ENABLE_SMOOTH_SCROLLING_NAME, | 696 IDS_FLAGS_ENABLE_SMOOTH_SCROLLING_NAME, |
690 IDS_FLAGS_ENABLE_SMOOTH_SCROLLING_DESCRIPTION, | 697 IDS_FLAGS_ENABLE_SMOOTH_SCROLLING_DESCRIPTION, |
691 // Can't expose the switch unless the code is compiled in. | 698 // Can't expose the switch unless the code is compiled in. |
692 // On by default for the Mac (different implementation in WebKit). | 699 // On by default for the Mac (different implementation in WebKit). |
693 kOsWin | kOsLinux, | 700 kOsWin | kOsLinux, |
694 SINGLE_VALUE_TYPE(switches::kEnableSmoothScrolling) | 701 SINGLE_VALUE_TYPE(switches::kEnableSmoothScrolling) |
695 }, | 702 }, |
696 { | 703 { |
697 "omnibox-history-quick-provider-reorder-for-inlining", | 704 "omnibox-history-quick-provider-reorder-for-inlining", |
(...skipping 1404 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
2102 } | 2109 } |
2103 | 2110 |
2104 const Experiment* GetExperiments(size_t* count) { | 2111 const Experiment* GetExperiments(size_t* count) { |
2105 *count = num_experiments; | 2112 *count = num_experiments; |
2106 return experiments; | 2113 return experiments; |
2107 } | 2114 } |
2108 | 2115 |
2109 } // namespace testing | 2116 } // namespace testing |
2110 | 2117 |
2111 } // namespace about_flags | 2118 } // namespace about_flags |
OLD | NEW |