Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(98)

Side by Side Diff: chrome/browser/about_flags.cc

Issue 12036074: overscroll: Enable overscroll navigation by default. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: tot-merge Created 7 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 1164 matching lines...) Expand 10 before | Expand all | Expand 10 after
1175 }, 1175 },
1176 { 1176 {
1177 "enable-interactive-autocomplete", 1177 "enable-interactive-autocomplete",
1178 IDS_FLAGS_ENABLE_INTERACTIVE_AUTOCOMPLETE_NAME, 1178 IDS_FLAGS_ENABLE_INTERACTIVE_AUTOCOMPLETE_NAME,
1179 IDS_FLAGS_ENABLE_INTERACTIVE_AUTOCOMPLETE_DESCRIPTION, 1179 IDS_FLAGS_ENABLE_INTERACTIVE_AUTOCOMPLETE_DESCRIPTION,
1180 kOsWin | kOsCrOS, 1180 kOsWin | kOsCrOS,
1181 SINGLE_VALUE_TYPE(switches::kEnableInteractiveAutocomplete) 1181 SINGLE_VALUE_TYPE(switches::kEnableInteractiveAutocomplete)
1182 }, 1182 },
1183 #if defined(USE_AURA) 1183 #if defined(USE_AURA)
1184 { 1184 {
1185 "enable-overscroll-history-navigation", 1185 "disable-overscroll-history-navigation",
1186 IDS_FLAGS_ENABLE_OVERSCROLL_HISTORY_NAVIGATION_NAME, 1186 IDS_FLAGS_DISABLE_OVERSCROLL_HISTORY_NAVIGATION_NAME,
1187 IDS_FLAGS_ENABLE_OVERSCROLL_HISTORY_NAVIGATION_DESCRIPTION, 1187 IDS_FLAGS_DISABLE_OVERSCROLL_HISTORY_NAVIGATION_DESCRIPTION,
1188 kOsAll, 1188 kOsAll,
1189 SINGLE_VALUE_TYPE(switches::kEnableOverscrollHistoryNavigation) 1189 SINGLE_VALUE_TYPE(switches::kDisableOverscrollHistoryNavigation)
1190 }, 1190 },
1191 #endif 1191 #endif
1192 { 1192 {
1193 "enable-touch-drag-drop", 1193 "enable-touch-drag-drop",
1194 IDS_FLAGS_ENABLE_TOUCH_DRAG_DROP_NAME, 1194 IDS_FLAGS_ENABLE_TOUCH_DRAG_DROP_NAME,
1195 IDS_FLAGS_ENABLE_TOUCH_DRAG_DROP_DESCRIPTION, 1195 IDS_FLAGS_ENABLE_TOUCH_DRAG_DROP_DESCRIPTION,
1196 kOsWin | kOsCrOS, 1196 kOsWin | kOsCrOS,
1197 SINGLE_VALUE_TYPE(switches::kEnableTouchDragDrop) 1197 SINGLE_VALUE_TYPE(switches::kEnableTouchDragDrop)
1198 }, 1198 },
1199 { 1199 {
(...skipping 460 matching lines...) Expand 10 before | Expand all | Expand 10 after
1660 } 1660 }
1661 1661
1662 const Experiment* GetExperiments(size_t* count) { 1662 const Experiment* GetExperiments(size_t* count) {
1663 *count = num_experiments; 1663 *count = num_experiments;
1664 return experiments; 1664 return experiments;
1665 } 1665 }
1666 1666
1667 } // namespace testing 1667 } // namespace testing
1668 1668
1669 } // namespace about_flags 1669 } // namespace about_flags
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698