Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(251)

Side by Side Diff: ui/base/ui_base_switches.cc

Issue 1395193002: Fixes BrowserViewHostedAppTest.Layout when using MD (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixes BrowserViewHostedAppTest.Layout when using MD Created 5 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698