OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 #ifndef UI_BASE_X_X11_UTIL_INTERNAL_H_ | 5 #ifndef UI_BASE_X_X11_UTIL_INTERNAL_H_ |
6 #define UI_BASE_X_X11_UTIL_INTERNAL_H_ | 6 #define UI_BASE_X_X11_UTIL_INTERNAL_H_ |
7 | 7 |
8 // This file declares utility functions for X11 (Linux only). | 8 // This file declares utility functions for X11 (Linux only). |
9 // | 9 // |
10 // These functions require the inclusion of the Xlib headers. Since the Xlib | 10 // These functions require the inclusion of the Xlib headers. Since the Xlib |
(...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
94 private: | 94 private: |
95 Colormap colormap_; | 95 Colormap colormap_; |
96 }; | 96 }; |
97 | 97 |
98 XVisualManager(); | 98 XVisualManager(); |
99 | 99 |
100 std::unordered_map<VisualID, std::unique_ptr<XVisualData>> visuals_; | 100 std::unordered_map<VisualID, std::unique_ptr<XVisualData>> visuals_; |
101 | 101 |
102 XDisplay* display_; | 102 XDisplay* display_; |
103 | 103 |
| 104 VisualID default_visual_id_; |
104 VisualID system_visual_id_; | 105 VisualID system_visual_id_; |
105 VisualID transparent_visual_id_; | 106 VisualID transparent_visual_id_; |
106 | 107 |
107 bool using_compositing_wm_; | 108 bool using_compositing_wm_; |
108 bool using_software_rendering_; | 109 bool using_software_rendering_; |
109 bool have_gpu_argb_visual_; | 110 bool have_gpu_argb_visual_; |
110 | 111 |
111 DISALLOW_COPY_AND_ASSIGN(XVisualManager); | 112 DISALLOW_COPY_AND_ASSIGN(XVisualManager); |
112 }; | 113 }; |
113 #endif | 114 #endif |
114 | 115 |
115 } // namespace ui | 116 } // namespace ui |
116 | 117 |
117 #endif // UI_BASE_X_X11_UTIL_INTERNAL_H_ | 118 #endif // UI_BASE_X_X11_UTIL_INTERNAL_H_ |
OLD | NEW |