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 1234 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1245 }, | 1245 }, |
1246 { | 1246 { |
1247 "enable-interactive-autocomplete", | 1247 "enable-interactive-autocomplete", |
1248 IDS_FLAGS_ENABLE_INTERACTIVE_AUTOCOMPLETE_NAME, | 1248 IDS_FLAGS_ENABLE_INTERACTIVE_AUTOCOMPLETE_NAME, |
1249 IDS_FLAGS_ENABLE_INTERACTIVE_AUTOCOMPLETE_DESCRIPTION, | 1249 IDS_FLAGS_ENABLE_INTERACTIVE_AUTOCOMPLETE_DESCRIPTION, |
1250 kOsWin | kOsCrOS, | 1250 kOsWin | kOsCrOS, |
1251 SINGLE_VALUE_TYPE(switches::kEnableInteractiveAutocomplete) | 1251 SINGLE_VALUE_TYPE(switches::kEnableInteractiveAutocomplete) |
1252 }, | 1252 }, |
1253 #if defined(USE_AURA) | 1253 #if defined(USE_AURA) |
1254 { | 1254 { |
1255 "disable-overscroll-history-navigation", | 1255 "enable-overscroll-history-navigation", |
1256 IDS_FLAGS_DISABLE_OVERSCROLL_HISTORY_NAVIGATION_NAME, | 1256 IDS_FLAGS_ENABLE_OVERSCROLL_HISTORY_NAVIGATION_NAME, |
1257 IDS_FLAGS_DISABLE_OVERSCROLL_HISTORY_NAVIGATION_DESCRIPTION, | 1257 IDS_FLAGS_ENABLE_OVERSCROLL_HISTORY_NAVIGATION_DESCRIPTION, |
1258 kOsAll, | 1258 kOsAll, |
1259 SINGLE_VALUE_TYPE(switches::kDisableOverscrollHistoryNavigation) | 1259 SINGLE_VALUE_TYPE(switches::kEnableOverscrollHistoryNavigation) |
1260 }, | 1260 }, |
1261 #endif | 1261 #endif |
1262 { | 1262 { |
1263 "enable-touch-drag-drop", | 1263 "enable-touch-drag-drop", |
1264 IDS_FLAGS_ENABLE_TOUCH_DRAG_DROP_NAME, | 1264 IDS_FLAGS_ENABLE_TOUCH_DRAG_DROP_NAME, |
1265 IDS_FLAGS_ENABLE_TOUCH_DRAG_DROP_DESCRIPTION, | 1265 IDS_FLAGS_ENABLE_TOUCH_DRAG_DROP_DESCRIPTION, |
1266 kOsWin | kOsCrOS, | 1266 kOsWin | kOsCrOS, |
1267 SINGLE_VALUE_TYPE(switches::kEnableTouchDragDrop) | 1267 SINGLE_VALUE_TYPE(switches::kEnableTouchDragDrop) |
1268 }, | 1268 }, |
1269 #if defined(ENABLE_MESSAGE_CENTER) | 1269 #if defined(ENABLE_MESSAGE_CENTER) |
(...skipping 448 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1718 } | 1718 } |
1719 | 1719 |
1720 const Experiment* GetExperiments(size_t* count) { | 1720 const Experiment* GetExperiments(size_t* count) { |
1721 *count = num_experiments; | 1721 *count = num_experiments; |
1722 return experiments; | 1722 return experiments; |
1723 } | 1723 } |
1724 | 1724 |
1725 } // namespace testing | 1725 } // namespace testing |
1726 | 1726 |
1727 } // namespace about_flags | 1727 } // namespace about_flags |
OLD | NEW |