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 1206 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1217 "enable-experimental-form-filling", | 1217 "enable-experimental-form-filling", |
1218 IDS_FLAGS_ENABLE_EXPERIMENTAL_FORM_FILLING_NAME, | 1218 IDS_FLAGS_ENABLE_EXPERIMENTAL_FORM_FILLING_NAME, |
1219 IDS_FLAGS_ENABLE_EXPERIMENTAL_FORM_FILLING_DESCRIPTION, | 1219 IDS_FLAGS_ENABLE_EXPERIMENTAL_FORM_FILLING_DESCRIPTION, |
1220 kOsWin | kOsCrOS, | 1220 kOsWin | kOsCrOS, |
1221 SINGLE_VALUE_TYPE(switches::kEnableExperimentalFormFilling) | 1221 SINGLE_VALUE_TYPE(switches::kEnableExperimentalFormFilling) |
1222 }, | 1222 }, |
1223 { | 1223 { |
1224 "enable-interactive-autocomplete", | 1224 "enable-interactive-autocomplete", |
1225 IDS_FLAGS_ENABLE_INTERACTIVE_AUTOCOMPLETE_NAME, | 1225 IDS_FLAGS_ENABLE_INTERACTIVE_AUTOCOMPLETE_NAME, |
1226 IDS_FLAGS_ENABLE_INTERACTIVE_AUTOCOMPLETE_DESCRIPTION, | 1226 IDS_FLAGS_ENABLE_INTERACTIVE_AUTOCOMPLETE_DESCRIPTION, |
1227 kOsWin | kOsCrOS, | 1227 kOsWin | kOsCrOS | kOsAndroid, |
1228 SINGLE_VALUE_TYPE(switches::kEnableInteractiveAutocomplete) | 1228 SINGLE_VALUE_TYPE(switches::kEnableInteractiveAutocomplete) |
1229 }, | 1229 }, |
1230 #if defined(USE_AURA) | 1230 #if defined(USE_AURA) |
1231 { | 1231 { |
1232 "enable-overscroll-history-navigation", | 1232 "enable-overscroll-history-navigation", |
1233 IDS_FLAGS_ENABLE_OVERSCROLL_HISTORY_NAVIGATION_NAME, | 1233 IDS_FLAGS_ENABLE_OVERSCROLL_HISTORY_NAVIGATION_NAME, |
1234 IDS_FLAGS_ENABLE_OVERSCROLL_HISTORY_NAVIGATION_DESCRIPTION, | 1234 IDS_FLAGS_ENABLE_OVERSCROLL_HISTORY_NAVIGATION_DESCRIPTION, |
1235 kOsAll, | 1235 kOsAll, |
1236 SINGLE_VALUE_TYPE(switches::kEnableOverscrollHistoryNavigation) | 1236 SINGLE_VALUE_TYPE(switches::kEnableOverscrollHistoryNavigation) |
1237 }, | 1237 }, |
(...skipping 483 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1721 } | 1721 } |
1722 | 1722 |
1723 const Experiment* GetExperiments(size_t* count) { | 1723 const Experiment* GetExperiments(size_t* count) { |
1724 *count = num_experiments; | 1724 *count = num_experiments; |
1725 return experiments; | 1725 return experiments; |
1726 } | 1726 } |
1727 | 1727 |
1728 } // namespace testing | 1728 } // namespace testing |
1729 | 1729 |
1730 } // namespace about_flags | 1730 } // namespace about_flags |
OLD | NEW |