| 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_AURA_ROOT_WINDOW_HOST_H_ | 5 #ifndef UI_AURA_ROOT_WINDOW_HOST_H_ |
| 6 #define UI_AURA_ROOT_WINDOW_HOST_H_ | 6 #define UI_AURA_ROOT_WINDOW_HOST_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include "base/message_loop.h" | 9 #include "base/message_loop.h" |
| 10 #include "ui/aura/cursor.h" | 10 #include "ui/base/cursor/cursor.h" |
| 11 #include "ui/gfx/native_widget_types.h" | 11 #include "ui/gfx/native_widget_types.h" |
| 12 | 12 |
| 13 namespace gfx { | 13 namespace gfx { |
| 14 class Point; | 14 class Point; |
| 15 class Rect; | 15 class Rect; |
| 16 class Size; | 16 class Size; |
| 17 } | 17 } |
| 18 | 18 |
| 19 namespace aura { | 19 namespace aura { |
| 20 | 20 |
| (...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 84 | 84 |
| 85 // Posts |native_event| to the platform's event queue. | 85 // Posts |native_event| to the platform's event queue. |
| 86 #if !defined(OS_MACOSX) | 86 #if !defined(OS_MACOSX) |
| 87 virtual void PostNativeEvent(const base::NativeEvent& native_event) = 0; | 87 virtual void PostNativeEvent(const base::NativeEvent& native_event) = 0; |
| 88 #endif | 88 #endif |
| 89 }; | 89 }; |
| 90 | 90 |
| 91 } // namespace aura | 91 } // namespace aura |
| 92 | 92 |
| 93 #endif // UI_AURA_ROOT_WINDOW_HOST_H_ | 93 #endif // UI_AURA_ROOT_WINDOW_HOST_H_ |
| OLD | NEW |