| 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_ROOT_WINDOW_HOST_WIN_H_ | 5 #ifndef UI_VIEWS_WIDGET_DESKTOP_AURA_DESKTOP_ROOT_WINDOW_HOST_WIN_H_ |
| 6 #define UI_VIEWS_WIDGET_DESKTOP_AURA_DESKTOP_ROOT_WINDOW_HOST_WIN_H_ | 6 #define UI_VIEWS_WIDGET_DESKTOP_AURA_DESKTOP_ROOT_WINDOW_HOST_WIN_H_ |
| 7 | 7 |
| 8 #include "ui/aura/client/animation_host.h" | 8 #include "ui/aura/client/animation_host.h" |
| 9 #include "ui/aura/root_window_host.h" | 9 #include "ui/aura/root_window_host.h" |
| 10 #include "ui/views/views_export.h" | 10 #include "ui/views/views_export.h" |
| (...skipping 246 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 257 | 257 |
| 258 // True if the widget is going to have a non_client_view. We cache this value | 258 // True if the widget is going to have a non_client_view. We cache this value |
| 259 // rather than asking the Widget for the non_client_view so that we know at | 259 // rather than asking the Widget for the non_client_view so that we know at |
| 260 // Init time, before the Widget has created the NonClientView. | 260 // Init time, before the Widget has created the NonClientView. |
| 261 bool has_non_client_view_; | 261 bool has_non_client_view_; |
| 262 | 262 |
| 263 // Owned by TooltipController, but we need to forward events to it so we keep | 263 // Owned by TooltipController, but we need to forward events to it so we keep |
| 264 // a reference. | 264 // a reference. |
| 265 corewm::TooltipWin* tooltip_; | 265 corewm::TooltipWin* tooltip_; |
| 266 | 266 |
| 267 // State of the cursor. |
| 268 bool is_cursor_visible_; |
| 269 |
| 267 DISALLOW_COPY_AND_ASSIGN(DesktopRootWindowHostWin); | 270 DISALLOW_COPY_AND_ASSIGN(DesktopRootWindowHostWin); |
| 268 }; | 271 }; |
| 269 | 272 |
| 270 } // namespace views | 273 } // namespace views |
| 271 | 274 |
| 272 #endif // UI_VIEWS_WIDGET_DESKTOP_AURA_DESKTOP_ROOT_WINDOW_HOST_WIN_H_ | 275 #endif // UI_VIEWS_WIDGET_DESKTOP_AURA_DESKTOP_ROOT_WINDOW_HOST_WIN_H_ |
| OLD | NEW |