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

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

Issue 305423003: Reland: Enable touch text selection by default on desktop Aura (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 6 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
« no previous file with comments | « no previous file | ui/base/ui_base_switches_util.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 <iterator> 7 #include <iterator>
8 #include <map> 8 #include <map>
9 #include <set> 9 #include <set>
10 #include <utility> 10 #include <utility>
(...skipping 1096 matching lines...) Expand 10 before | Expand all | Expand 10 after
1107 IDS_FLAGS_ENABLE_TOUCH_DRAG_DROP_NAME, 1107 IDS_FLAGS_ENABLE_TOUCH_DRAG_DROP_NAME,
1108 IDS_FLAGS_ENABLE_TOUCH_DRAG_DROP_DESCRIPTION, 1108 IDS_FLAGS_ENABLE_TOUCH_DRAG_DROP_DESCRIPTION,
1109 kOsWin | kOsCrOS, 1109 kOsWin | kOsCrOS,
1110 ENABLE_DISABLE_VALUE_TYPE(switches::kEnableTouchDragDrop, 1110 ENABLE_DISABLE_VALUE_TYPE(switches::kEnableTouchDragDrop,
1111 switches::kDisableTouchDragDrop) 1111 switches::kDisableTouchDragDrop)
1112 }, 1112 },
1113 { 1113 {
1114 "enable-touch-editing", 1114 "enable-touch-editing",
1115 IDS_FLAGS_ENABLE_TOUCH_EDITING_NAME, 1115 IDS_FLAGS_ENABLE_TOUCH_EDITING_NAME,
1116 IDS_FLAGS_ENABLE_TOUCH_EDITING_DESCRIPTION, 1116 IDS_FLAGS_ENABLE_TOUCH_EDITING_DESCRIPTION,
1117 kOsCrOS, 1117 kOsCrOS | kOsWin | kOsLinux,
1118 ENABLE_DISABLE_VALUE_TYPE(switches::kEnableTouchEditing, 1118 ENABLE_DISABLE_VALUE_TYPE(switches::kEnableTouchEditing,
1119 switches::kDisableTouchEditing) 1119 switches::kDisableTouchEditing)
1120 }, 1120 },
1121 { 1121 {
1122 "enable-suggestions-service", 1122 "enable-suggestions-service",
1123 IDS_FLAGS_ENABLE_SUGGESTIONS_SERVICE_NAME, 1123 IDS_FLAGS_ENABLE_SUGGESTIONS_SERVICE_NAME,
1124 IDS_FLAGS_ENABLE_SUGGESTIONS_SERVICE_DESCRIPTION, 1124 IDS_FLAGS_ENABLE_SUGGESTIONS_SERVICE_DESCRIPTION,
1125 kOsAndroid | kOsCrOS, 1125 kOsAndroid | kOsCrOS,
1126 ENABLE_DISABLE_VALUE_TYPE(switches::kEnableSuggestionsService, 1126 ENABLE_DISABLE_VALUE_TYPE(switches::kEnableSuggestionsService,
1127 switches::kDisableSuggestionsService) 1127 switches::kDisableSuggestionsService)
(...skipping 1213 matching lines...) Expand 10 before | Expand all | Expand 10 after
2341 } 2341 }
2342 2342
2343 const Experiment* GetExperiments(size_t* count) { 2343 const Experiment* GetExperiments(size_t* count) {
2344 *count = num_experiments; 2344 *count = num_experiments;
2345 return experiments; 2345 return experiments;
2346 } 2346 }
2347 2347
2348 } // namespace testing 2348 } // namespace testing
2349 2349
2350 } // namespace about_flags 2350 } // namespace about_flags
OLDNEW
« no previous file with comments | « no previous file | ui/base/ui_base_switches_util.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698