| 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 "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 Loading... |
| 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 Loading... |
| 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 |
| OLD | NEW |