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 #ifndef UI_AURA_WINDOW_TREE_HOST_X11_H_ | 5 #ifndef UI_AURA_WINDOW_TREE_HOST_X11_H_ |
6 #define UI_AURA_WINDOW_TREE_HOST_X11_H_ | 6 #define UI_AURA_WINDOW_TREE_HOST_X11_H_ |
7 | 7 |
8 #include <stdint.h> | 8 #include <stdint.h> |
9 | 9 |
10 #include <memory> | 10 #include <memory> |
(...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
96 bool window_mapped_; | 96 bool window_mapped_; |
97 | 97 |
98 // The bounds of |xwindow_|. | 98 // The bounds of |xwindow_|. |
99 gfx::Rect bounds_; | 99 gfx::Rect bounds_; |
100 | 100 |
101 ui::X11AtomCache atom_cache_; | 101 ui::X11AtomCache atom_cache_; |
102 | 102 |
103 DISALLOW_COPY_AND_ASSIGN(WindowTreeHostX11); | 103 DISALLOW_COPY_AND_ASSIGN(WindowTreeHostX11); |
104 }; | 104 }; |
105 | 105 |
106 namespace test { | |
107 | |
108 // Set the default value of the override redirect flag used to | |
109 // create a X window for WindowTreeHostX11. | |
110 AURA_EXPORT void SetUseOverrideRedirectWindowByDefault(bool override_redirect); | |
111 | |
112 } // namespace test | |
113 } // namespace aura | 106 } // namespace aura |
114 | 107 |
115 #endif // UI_AURA_WINDOW_TREE_HOST_X11_H_ | 108 #endif // UI_AURA_WINDOW_TREE_HOST_X11_H_ |
OLD | NEW |