| 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_ROOT_WINDOW_HOST_LINUX_H_ | 5 #ifndef UI_AURA_ROOT_WINDOW_HOST_LINUX_H_ |
| 6 #define UI_AURA_ROOT_WINDOW_HOST_LINUX_H_ | 6 #define UI_AURA_ROOT_WINDOW_HOST_LINUX_H_ |
| 7 | 7 |
| 8 #include <X11/Xlib.h> | 8 #include <X11/Xlib.h> |
| 9 | 9 |
| 10 // Get rid of a macro from Xlib.h that conflicts with Aura's RootWindow class. | 10 // Get rid of a macro from Xlib.h that conflicts with Aura's RootWindow class. |
| (...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 90 // The bounds of |xwindow_|. | 90 // The bounds of |xwindow_|. |
| 91 gfx::Rect bounds_; | 91 gfx::Rect bounds_; |
| 92 | 92 |
| 93 // True if the window should be focused when the window is shown. | 93 // True if the window should be focused when the window is shown. |
| 94 bool focus_when_shown_; | 94 bool focus_when_shown_; |
| 95 | 95 |
| 96 scoped_array<XID> pointer_barriers_; | 96 scoped_array<XID> pointer_barriers_; |
| 97 | 97 |
| 98 scoped_ptr<ui::ViewProp> prop_; | 98 scoped_ptr<ui::ViewProp> prop_; |
| 99 | 99 |
| 100 class ImageCursors; | |
| 101 scoped_ptr<ImageCursors> image_cursors_; | |
| 102 | |
| 103 X11AtomCache atom_cache_; | 100 X11AtomCache atom_cache_; |
| 104 | 101 |
| 105 DISALLOW_COPY_AND_ASSIGN(RootWindowHostLinux); | 102 DISALLOW_COPY_AND_ASSIGN(RootWindowHostLinux); |
| 106 }; | 103 }; |
| 107 | 104 |
| 108 } // namespace aura | 105 } // namespace aura |
| 109 | 106 |
| 110 #endif // UI_AURA_ROOT_WINDOW_HOST_LINUX_H_ | 107 #endif // UI_AURA_ROOT_WINDOW_HOST_LINUX_H_ |
| OLD | NEW |