| 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 "ui/aura/window_tree_host.h" | 9 #include "ui/aura/window_tree_host.h" |
| 9 #include "ui/views/views_export.h" | 10 #include "ui/views/views_export.h" |
| 10 #include "ui/views/widget/desktop_aura/desktop_window_tree_host.h" | 11 #include "ui/views/widget/desktop_aura/desktop_window_tree_host.h" |
| 11 #include "ui/views/win/hwnd_message_handler_delegate.h" | 12 #include "ui/views/win/hwnd_message_handler_delegate.h" |
| 12 #include "ui/wm/public/animation_host.h" | 13 #include "ui/wm/public/animation_host.h" |
| 13 | 14 |
| 14 namespace aura { | 15 namespace aura { |
| 15 namespace client { | 16 namespace client { |
| 16 class DragDropClient; | 17 class DragDropClient; |
| 17 class FocusClient; | 18 class FocusClient; |
| (...skipping 235 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 253 static bool is_cursor_visible_; | 254 static bool is_cursor_visible_; |
| 254 | 255 |
| 255 scoped_ptr<aura::client::ScopedTooltipDisabler> tooltip_disabler_; | 256 scoped_ptr<aura::client::ScopedTooltipDisabler> tooltip_disabler_; |
| 256 | 257 |
| 257 DISALLOW_COPY_AND_ASSIGN(DesktopWindowTreeHostWin); | 258 DISALLOW_COPY_AND_ASSIGN(DesktopWindowTreeHostWin); |
| 258 }; | 259 }; |
| 259 | 260 |
| 260 } // namespace views | 261 } // namespace views |
| 261 | 262 |
| 262 #endif // UI_VIEWS_WIDGET_DESKTOP_AURA_DESKTOP_WINDOW_TREE_HOST_WIN_H_ | 263 #endif // UI_VIEWS_WIDGET_DESKTOP_AURA_DESKTOP_WINDOW_TREE_HOST_WIN_H_ |
| OLD | NEW |