| 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_ROOT_WINDOW_HOST_WIN_H_ | 5 #ifndef UI_VIEWS_WIDGET_DESKTOP_AURA_DESKTOP_ROOT_WINDOW_HOST_WIN_H_ |
| 6 #define UI_VIEWS_WIDGET_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/root_window_host.h" | 8 #include "ui/aura/root_window_host.h" |
| 9 #include "ui/views/views_export.h" | 9 #include "ui/views/views_export.h" |
| 10 #include "ui/views/widget/desktop_root_window_host.h" | 10 #include "ui/views/widget/desktop_aura/desktop_root_window_host.h" |
| 11 #include "ui/views/win/hwnd_message_handler_delegate.h" | 11 #include "ui/views/win/hwnd_message_handler_delegate.h" |
| 12 | 12 |
| 13 namespace aura { | 13 namespace aura { |
| 14 class FocusManager; | 14 class FocusManager; |
| 15 namespace client { | 15 namespace client { |
| 16 class DefaultCaptureClient; | 16 class DefaultCaptureClient; |
| 17 class ScreenPositionClient; | 17 class ScreenPositionClient; |
| 18 } | 18 } |
| 19 } | 19 } |
| 20 | 20 |
| (...skipping 211 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 232 scoped_ptr<DesktopCursorClient> cursor_client_; | 232 scoped_ptr<DesktopCursorClient> cursor_client_; |
| 233 | 233 |
| 234 // The RootWindow's CompoundEventFilter. | 234 // The RootWindow's CompoundEventFilter. |
| 235 views::corewm::CompoundEventFilter* root_window_event_filter_; | 235 views::corewm::CompoundEventFilter* root_window_event_filter_; |
| 236 | 236 |
| 237 DISALLOW_COPY_AND_ASSIGN(DesktopRootWindowHostWin); | 237 DISALLOW_COPY_AND_ASSIGN(DesktopRootWindowHostWin); |
| 238 }; | 238 }; |
| 239 | 239 |
| 240 } // namespace views | 240 } // namespace views |
| 241 | 241 |
| 242 #endif // UI_VIEWS_WIDGET_DESKTOP_ROOT_WINDOW_HOST_WIN_H_ | 242 #endif // UI_VIEWS_WIDGET_DESKTOP_AURA_DESKTOP_ROOT_WINDOW_HOST_WIN_H_ |
| OLD | NEW |