Chromium Code Reviews| 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 652 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 663 }, | 663 }, |
| 664 { | 664 { |
| 665 "enable-gesture-tap-highlight", | 665 "enable-gesture-tap-highlight", |
| 666 IDS_FLAGS_ENABLE_GESTURE_TAP_HIGHLIGHTING_NAME, | 666 IDS_FLAGS_ENABLE_GESTURE_TAP_HIGHLIGHTING_NAME, |
| 667 IDS_FLAGS_ENABLE_GESTURE_TAP_HIGHLIGHTING_DESCRIPTION, | 667 IDS_FLAGS_ENABLE_GESTURE_TAP_HIGHLIGHTING_DESCRIPTION, |
| 668 kOsLinux | kOsCrOS, | 668 kOsLinux | kOsCrOS, |
| 669 ENABLE_DISABLE_VALUE_TYPE(switches::kEnableGestureTapHighlight, | 669 ENABLE_DISABLE_VALUE_TYPE(switches::kEnableGestureTapHighlight, |
| 670 switches::kDisableGestureTapHighlight) | 670 switches::kDisableGestureTapHighlight) |
| 671 }, | 671 }, |
| 672 { | 672 { |
| 673 "enable-strict-ime-processing", | |
| 674 IDS_FLAGS_ENABLE_STRICT_IME_PROCESSING_NAME, | |
| 675 IDS_FLAGS_ENABLE_STRICT_IME_PROCESSING_DESCRIPTION, | |
| 676 kOsAndroid, | |
|
kochi
2013/07/08 04:28:43
A general question: how can we pass an argument on
aurimas (slooooooooow)
2013/07/08 16:04:49
adb shell 'echo "chrome <flags>" > /data/local/chr
nyquist
2013/07/09 07:47:36
For content-shell:
build/android/adb_content_shell
| |
| 677 SINGLE_VALUE_TYPE(switches::kEnableStrictImeProcessing) | |
| 678 }, | |
| 679 { | |
| 673 "enable-smooth-scrolling", // FLAGS:RECORD_UMA | 680 "enable-smooth-scrolling", // FLAGS:RECORD_UMA |
| 674 IDS_FLAGS_ENABLE_SMOOTH_SCROLLING_NAME, | 681 IDS_FLAGS_ENABLE_SMOOTH_SCROLLING_NAME, |
| 675 IDS_FLAGS_ENABLE_SMOOTH_SCROLLING_DESCRIPTION, | 682 IDS_FLAGS_ENABLE_SMOOTH_SCROLLING_DESCRIPTION, |
| 676 // Can't expose the switch unless the code is compiled in. | 683 // Can't expose the switch unless the code is compiled in. |
| 677 // On by default for the Mac (different implementation in WebKit). | 684 // On by default for the Mac (different implementation in WebKit). |
| 678 kOsWin | kOsLinux, | 685 kOsWin | kOsLinux, |
| 679 SINGLE_VALUE_TYPE(switches::kEnableSmoothScrolling) | 686 SINGLE_VALUE_TYPE(switches::kEnableSmoothScrolling) |
| 680 }, | 687 }, |
| 681 { | 688 { |
| 682 "omnibox-history-quick-provider-reorder-for-inlining", | 689 "omnibox-history-quick-provider-reorder-for-inlining", |
| (...skipping 1411 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 2094 } | 2101 } |
| 2095 | 2102 |
| 2096 const Experiment* GetExperiments(size_t* count) { | 2103 const Experiment* GetExperiments(size_t* count) { |
| 2097 *count = num_experiments; | 2104 *count = num_experiments; |
| 2098 return experiments; | 2105 return experiments; |
| 2099 } | 2106 } |
| 2100 | 2107 |
| 2101 } // namespace testing | 2108 } // namespace testing |
| 2102 | 2109 |
| 2103 } // namespace about_flags | 2110 } // namespace about_flags |
| OLD | NEW |