| 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 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 72 const char kTopChromeMD[] = "top-chrome-md"; | 72 const char kTopChromeMD[] = "top-chrome-md"; |
| 73 | 73 |
| 74 // Material design mode for the |kTopChromeMD| switch. | 74 // Material design mode for the |kTopChromeMD| switch. |
| 75 const char kTopChromeMDMaterial[] = "material"; | 75 const char kTopChromeMDMaterial[] = "material"; |
| 76 | 76 |
| 77 // Material design hybrid mode for the |kTopChromeMD| switch. Targeted for | 77 // Material design hybrid mode for the |kTopChromeMD| switch. Targeted for |
| 78 // mouse/touch hybrid devices. | 78 // mouse/touch hybrid devices. |
| 79 const char kTopChromeMDMaterialHybrid[] = "material-hybrid"; | 79 const char kTopChromeMDMaterialHybrid[] = "material-hybrid"; |
| 80 | 80 |
| 81 // Classic, non-material, mode for the |kTopChromeMD| switch. | 81 // Classic, non-material, mode for the |kTopChromeMD| switch. |
| 82 const char kTopChromeMDNonMaterial[] = ""; | 82 const char kTopChromeMDNonMaterial[] = "non-material"; |
| 83 #endif // defined(ENABLE_TOPCHROME_MD) | 83 #endif // defined(ENABLE_TOPCHROME_MD) |
| 84 | 84 |
| 85 // On Windows only: requests that Chrome connect to the running Metro viewer | 85 // On Windows only: requests that Chrome connect to the running Metro viewer |
| 86 // process. | 86 // process. |
| 87 const char kViewerConnect[] = "connect-to-metro-viewer"; | 87 const char kViewerConnect[] = "connect-to-metro-viewer"; |
| 88 | 88 |
| 89 } // namespace switches | 89 } // namespace switches |
| OLD | NEW |