| 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 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 66 // Material design mode for the |kTopChromeMD| switch. | 66 // Material design mode for the |kTopChromeMD| switch. |
| 67 const char kTopChromeMDMaterial[] = "material"; | 67 const char kTopChromeMDMaterial[] = "material"; |
| 68 | 68 |
| 69 // Material design hybrid mode for the |kTopChromeMD| switch. Targeted for | 69 // Material design hybrid mode for the |kTopChromeMD| switch. Targeted for |
| 70 // mouse/touch hybrid devices. | 70 // mouse/touch hybrid devices. |
| 71 const char kTopChromeMDMaterialHybrid[] = "material-hybrid"; | 71 const char kTopChromeMDMaterialHybrid[] = "material-hybrid"; |
| 72 | 72 |
| 73 // Classic, non-material, mode for the |kTopChromeMD| switch. | 73 // Classic, non-material, mode for the |kTopChromeMD| switch. |
| 74 const char kTopChromeMDNonMaterial[] = "non-material"; | 74 const char kTopChromeMDNonMaterial[] = "non-material"; |
| 75 | 75 |
| 76 // Use new window behavior for virtual keyboard (do not change work area in |
| 77 // non-sticky mode). |
| 78 const char kUseNewVirtualKeyboardBehavior[] = |
| 79 "use-new-virtual-keyboard-behavior"; |
| 80 |
| 76 // Applies the material design mode passed via --top-chrome-md to elements | 81 // Applies the material design mode passed via --top-chrome-md to elements |
| 77 // throughout Chrome (not just top Chrome). | 82 // throughout Chrome (not just top Chrome). |
| 78 const char kExtendMdToSecondaryUi[] = "secondary-ui-md"; | 83 const char kExtendMdToSecondaryUi[] = "secondary-ui-md"; |
| 79 | 84 |
| 80 } // namespace switches | 85 } // namespace switches |
| OLD | NEW |