| 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 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 69 | 69 |
| 70 // Material design mode for the |kTopChromeMD| switch. | 70 // Material design mode for the |kTopChromeMD| switch. |
| 71 const char kTopChromeMDMaterial[] = "material"; | 71 const char kTopChromeMDMaterial[] = "material"; |
| 72 | 72 |
| 73 // Material design hybrid mode for the |kTopChromeMD| switch. Targeted for | 73 // Material design hybrid mode for the |kTopChromeMD| switch. Targeted for |
| 74 // mouse/touch hybrid devices. | 74 // mouse/touch hybrid devices. |
| 75 const char kTopChromeMDMaterialHybrid[] = "material-hybrid"; | 75 const char kTopChromeMDMaterialHybrid[] = "material-hybrid"; |
| 76 | 76 |
| 77 // Classic, non-material, mode for the |kTopChromeMD| switch. | 77 // Classic, non-material, mode for the |kTopChromeMD| switch. |
| 78 const char kTopChromeMDNonMaterial[] = "non-material"; | 78 const char kTopChromeMDNonMaterial[] = "non-material"; |
| 79 |
| 80 // Applies the material design mode passed via --top-chrome-md to elements |
| 81 // throughout Chrome (not just top Chrome). |
| 82 const char kExtendMdToSecondaryUi[] = "secondary-ui-md"; |
| 79 #endif // defined(ENABLE_TOPCHROME_MD) | 83 #endif // defined(ENABLE_TOPCHROME_MD) |
| 80 | 84 |
| 81 } // namespace switches | 85 } // namespace switches |
| OLD | NEW |