| 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 "ui/base/ui_base_switches.h" | 5 #include "ui/base/ui_base_switches.h" |
| 6 | 6 |
| 7 namespace switches { | 7 namespace switches { |
| 8 | 8 |
| 9 #if defined(OS_MACOSX) && !defined(OS_IOS) | 9 #if defined(OS_MACOSX) && !defined(OS_IOS) |
| 10 // Fall back to using CAOpenGLLayers display content, instead of the IOSurface | 10 // Fall back to using CAOpenGLLayers display content, instead of the IOSurface |
| (...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 63 const char kTopChromeMD[] = "top-chrome-md"; | 63 const char kTopChromeMD[] = "top-chrome-md"; |
| 64 | 64 |
| 65 // Material design mode for the |kTopChromeMD| switch. | 65 // Material design mode for the |kTopChromeMD| switch. |
| 66 const char kTopChromeMDMaterial[] = "material"; | 66 const char kTopChromeMDMaterial[] = "material"; |
| 67 | 67 |
| 68 // Material design hybrid mode for the |kTopChromeMD| switch. Targeted for | 68 // Material design hybrid mode for the |kTopChromeMD| switch. Targeted for |
| 69 // mouse/touch hybrid devices. | 69 // mouse/touch hybrid devices. |
| 70 const char kTopChromeMDMaterialHybrid[] = "material-hybrid"; | 70 const char kTopChromeMDMaterialHybrid[] = "material-hybrid"; |
| 71 | 71 |
| 72 // Classic, non-material, mode for the |kTopChromeMD| switch. | 72 // Classic, non-material, mode for the |kTopChromeMD| switch. |
| 73 const char kTopChromeMDNonMaterial[] = ""; | 73 const char kTopChromeMDNonMaterial[] = "non-material"; |
| 74 #endif // defined(ENABLE_TOPCHROME_MD) | 74 #endif // defined(ENABLE_TOPCHROME_MD) |
| 75 | 75 |
| 76 // On Windows only: requests that Chrome connect to the running Metro viewer | 76 // On Windows only: requests that Chrome connect to the running Metro viewer |
| 77 // process. | 77 // process. |
| 78 const char kViewerConnect[] = "connect-to-metro-viewer"; | 78 const char kViewerConnect[] = "connect-to-metro-viewer"; |
| 79 | 79 |
| 80 } // namespace switches | 80 } // namespace switches |
| OLD | NEW |