| 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_VIEWS_WIDGET_DESKTOP_AURA_DESKTOP_WINDOW_TREE_HOST_X11_H_ |    5 #ifndef UI_VIEWS_WIDGET_DESKTOP_AURA_DESKTOP_WINDOW_TREE_HOST_X11_H_ | 
|    6 #define UI_VIEWS_WIDGET_DESKTOP_AURA_DESKTOP_WINDOW_TREE_HOST_X11_H_ |    6 #define UI_VIEWS_WIDGET_DESKTOP_AURA_DESKTOP_WINDOW_TREE_HOST_X11_H_ | 
|    7  |    7  | 
|    8 #include <X11/extensions/shape.h> |    8 #include <X11/extensions/shape.h> | 
|    9 #include <X11/Xlib.h> |    9 #include <X11/Xlib.h> | 
|   10  |   10  | 
|   11 #include "base/basictypes.h" |   11 #include "base/basictypes.h" | 
|   12 #include "base/cancelable_callback.h" |   12 #include "base/cancelable_callback.h" | 
|   13 #include "base/memory/weak_ptr.h" |   13 #include "base/memory/weak_ptr.h" | 
|   14 #include "base/observer_list.h" |   14 #include "base/observer_list.h" | 
|   15 #include "ui/aura/window_tree_host.h" |   15 #include "ui/aura/window_tree_host.h" | 
|   16 #include "ui/base/cursor/cursor_loader_x11.h" |   16 #include "ui/base/cursor/cursor_loader_x11.h" | 
|   17 #include "ui/events/event_source.h" |   17 #include "ui/events/event_source.h" | 
|   18 #include "ui/events/platform/platform_event_dispatcher.h" |   18 #include "ui/events/platform/platform_event_dispatcher.h" | 
|   19 #include "ui/gfx/insets.h" |   19 #include "ui/gfx/geometry/insets.h" | 
|   20 #include "ui/gfx/rect.h" |   20 #include "ui/gfx/rect.h" | 
|   21 #include "ui/gfx/size.h" |   21 #include "ui/gfx/size.h" | 
|   22 #include "ui/gfx/x/x11_atom_cache.h" |   22 #include "ui/gfx/x/x11_atom_cache.h" | 
|   23 #include "ui/views/views_export.h" |   23 #include "ui/views/views_export.h" | 
|   24 #include "ui/views/widget/desktop_aura/desktop_window_tree_host.h" |   24 #include "ui/views/widget/desktop_aura/desktop_window_tree_host.h" | 
|   25  |   25  | 
|   26 namespace gfx { |   26 namespace gfx { | 
|   27 class ImageSkia; |   27 class ImageSkia; | 
|   28 class ImageSkiaRep; |   28 class ImageSkiaRep; | 
|   29 } |   29 } | 
| (...skipping 310 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
|  340   bool urgency_hint_set_; |  340   bool urgency_hint_set_; | 
|  341  |  341  | 
|  342   base::CancelableCallback<void()> delayed_resize_task_; |  342   base::CancelableCallback<void()> delayed_resize_task_; | 
|  343  |  343  | 
|  344   DISALLOW_COPY_AND_ASSIGN(DesktopWindowTreeHostX11); |  344   DISALLOW_COPY_AND_ASSIGN(DesktopWindowTreeHostX11); | 
|  345 }; |  345 }; | 
|  346  |  346  | 
|  347 }  // namespace views |  347 }  // namespace views | 
|  348  |  348  | 
|  349 #endif  // UI_VIEWS_WIDGET_DESKTOP_AURA_DESKTOP_WINDOW_TREE_HOST_X11_H_ |  349 #endif  // UI_VIEWS_WIDGET_DESKTOP_AURA_DESKTOP_WINDOW_TREE_HOST_X11_H_ | 
| OLD | NEW |