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

Side by Side Diff: ui/base/ui_base_switches.cc

Issue 1926173002: Erase LinkDisambiguation code on desktop. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: another merge conflict Created 4 years, 7 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
« no previous file with comments | « ui/base/ui_base_switches.h ('k') | 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 "build/build_config.h" 5 #include "build/build_config.h"
6 #include "ui/base/ui_base_switches.h" 6 #include "ui/base/ui_base_switches.h"
7 7
8 namespace switches { 8 namespace switches {
9 9
10 #if defined(OS_MACOSX) && !defined(OS_IOS) 10 #if defined(OS_MACOSX) && !defined(OS_IOS)
(...skipping 28 matching lines...) Expand all
39 39
40 // Disables touch event based drag and drop. 40 // Disables touch event based drag and drop.
41 const char kDisableTouchDragDrop[] = "disable-touch-drag-drop"; 41 const char kDisableTouchDragDrop[] = "disable-touch-drag-drop";
42 42
43 // Disables additional visual feedback to touch input. 43 // Disables additional visual feedback to touch input.
44 const char kDisableTouchFeedback[] = "disable-touch-feedback"; 44 const char kDisableTouchFeedback[] = "disable-touch-feedback";
45 45
46 // Enables large icons on the New Tab page. 46 // Enables large icons on the New Tab page.
47 const char kEnableIconNtp[] = "enable-icon-ntp"; 47 const char kEnableIconNtp[] = "enable-icon-ntp";
48 48
49 // Enables a zoomed popup bubble that allows the user to select a link.
50 const char kEnableLinkDisambiguationPopup[] =
51 "enable-link-disambiguation-popup";
52
53 // Enables touch event based drag and drop. 49 // Enables touch event based drag and drop.
54 const char kEnableTouchDragDrop[] = "enable-touch-drag-drop"; 50 const char kEnableTouchDragDrop[] = "enable-touch-drag-drop";
55 51
56 // The language file that we want to try to open. Of the form 52 // The language file that we want to try to open. Of the form
57 // language[-country] where language is the 2 letter code from ISO-639. 53 // language[-country] where language is the 2 letter code from ISO-639.
58 const char kLang[] = "lang"; 54 const char kLang[] = "lang";
59 55
60 // Defines the speed of Material Design visual feedback animations. 56 // Defines the speed of Material Design visual feedback animations.
61 const char kMaterialDesignInkDropAnimationSpeed[] = 57 const char kMaterialDesignInkDropAnimationSpeed[] =
62 "material-design-ink-drop-animation-speed"; 58 "material-design-ink-drop-animation-speed";
(...skipping 13 matching lines...) Expand all
76 72
77 // Material design hybrid mode for the |kTopChromeMD| switch. Targeted for 73 // Material design hybrid mode for the |kTopChromeMD| switch. Targeted for
78 // mouse/touch hybrid devices. 74 // mouse/touch hybrid devices.
79 const char kTopChromeMDMaterialHybrid[] = "material-hybrid"; 75 const char kTopChromeMDMaterialHybrid[] = "material-hybrid";
80 76
81 // Classic, non-material, mode for the |kTopChromeMD| switch. 77 // Classic, non-material, mode for the |kTopChromeMD| switch.
82 const char kTopChromeMDNonMaterial[] = "non-material"; 78 const char kTopChromeMDNonMaterial[] = "non-material";
83 #endif // defined(ENABLE_TOPCHROME_MD) 79 #endif // defined(ENABLE_TOPCHROME_MD)
84 80
85 } // namespace switches 81 } // namespace switches
OLDNEW
« no previous file with comments | « ui/base/ui_base_switches.h ('k') | ui/base/ui_base_switches_util.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698