| 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_WIN_H_ | 5 #ifndef UI_VIEWS_WIDGET_DESKTOP_AURA_DESKTOP_WINDOW_TREE_HOST_WIN_H_ |
| 6 #define UI_VIEWS_WIDGET_DESKTOP_AURA_DESKTOP_WINDOW_TREE_HOST_WIN_H_ | 6 #define UI_VIEWS_WIDGET_DESKTOP_AURA_DESKTOP_WINDOW_TREE_HOST_WIN_H_ |
| 7 | 7 |
| 8 #include "base/macros.h" | 8 #include "base/macros.h" |
| 9 #include "ui/aura/window_tree_host.h" | 9 #include "ui/aura/window_tree_host.h" |
| 10 #include "ui/views/views_export.h" | 10 #include "ui/views/views_export.h" |
| 11 #include "ui/views/widget/desktop_aura/desktop_window_tree_host.h" | 11 #include "ui/views/widget/desktop_aura/desktop_window_tree_host.h" |
| 12 #include "ui/views/win/hwnd_message_handler_delegate.h" | 12 #include "ui/views/win/hwnd_message_handler_delegate.h" |
| 13 #include "ui/wm/public/animation_host.h" | 13 #include "ui/wm/public/animation_host.h" |
| 14 | 14 |
| 15 namespace aura { | 15 namespace aura { |
| 16 namespace client { | 16 namespace client { |
| 17 class DragDropClient; | 17 class DragDropClient; |
| 18 class FocusClient; | 18 class FocusClient; |
| 19 class ScopedTooltipDisabler; | 19 class ScopedTooltipDisabler; |
| 20 } | 20 } |
| 21 } | 21 } |
| 22 | 22 |
| 23 namespace views { | 23 namespace views { |
| 24 class DesktopCursorClient; | |
| 25 class DesktopDragDropClientWin; | 24 class DesktopDragDropClientWin; |
| 26 class HWNDMessageHandler; | 25 class HWNDMessageHandler; |
| 27 | 26 |
| 28 namespace corewm { | 27 namespace corewm { |
| 29 class TooltipWin; | 28 class TooltipWin; |
| 30 } | 29 } |
| 31 | 30 |
| 32 class VIEWS_EXPORT DesktopWindowTreeHostWin | 31 class VIEWS_EXPORT DesktopWindowTreeHostWin |
| 33 : public DesktopWindowTreeHost, | 32 : public DesktopWindowTreeHost, |
| 34 public aura::client::AnimationHost, | 33 public aura::client::AnimationHost, |
| (...skipping 230 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 265 // Indicates if current window will receive mouse events when should not | 264 // Indicates if current window will receive mouse events when should not |
| 266 // become activated. | 265 // become activated. |
| 267 bool wants_mouse_events_when_inactive_ = false; | 266 bool wants_mouse_events_when_inactive_ = false; |
| 268 | 267 |
| 269 DISALLOW_COPY_AND_ASSIGN(DesktopWindowTreeHostWin); | 268 DISALLOW_COPY_AND_ASSIGN(DesktopWindowTreeHostWin); |
| 270 }; | 269 }; |
| 271 | 270 |
| 272 } // namespace views | 271 } // namespace views |
| 273 | 272 |
| 274 #endif // UI_VIEWS_WIDGET_DESKTOP_AURA_DESKTOP_WINDOW_TREE_HOST_WIN_H_ | 273 #endif // UI_VIEWS_WIDGET_DESKTOP_AURA_DESKTOP_WINDOW_TREE_HOST_WIN_H_ |
| OLD | NEW |