OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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/gfx/x/x11_switches.h" | 6 #include "ui/gfx/x/x11_switches.h" |
7 | 7 |
8 namespace switches { | 8 namespace switches { |
9 | 9 |
10 #if !defined(OS_CHROMEOS) | 10 #if !defined(OS_CHROMEOS) |
11 // Color bit depth of the main window created in the browser process and matches | |
12 // XWindowAttributes.depth. | |
13 const char kWindowDepth[] = "window-depth"; | |
14 | |
15 // Which X11 display to connect to. Emulates the GTK+ "--display=" command line | 11 // Which X11 display to connect to. Emulates the GTK+ "--display=" command line |
16 // argument. | 12 // argument. |
17 const char kX11Display[] = "display"; | 13 const char kX11Display[] = "display"; |
18 | |
19 // A VisualID that supports the requested window depth. | |
20 const char kX11VisualID[] = "x11-visual-id"; | |
21 #endif | 14 #endif |
22 | 15 |
23 } // namespace switches | 16 } // namespace switches |
OLD | NEW |