| 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_DELEGATE_H_ | 5 #ifndef UI_AURA_ROOT_WINDOW_HOST_DELEGATE_H_ |
| 6 #define UI_AURA_ROOT_WINDOW_HOST_DELEGATE_H_ | 6 #define UI_AURA_ROOT_WINDOW_HOST_DELEGATE_H_ |
| 7 | 7 |
| 8 #include "ui/aura/aura_export.h" |
| 9 |
| 8 namespace gfx { | 10 namespace gfx { |
| 9 class Point; | 11 class Point; |
| 10 class Size; | 12 class Size; |
| 11 } | 13 } |
| 12 | 14 |
| 13 namespace ui { | 15 namespace ui { |
| 14 class KeyEvent; | 16 class KeyEvent; |
| 15 class MouseEvent; | 17 class MouseEvent; |
| 16 class ScrollEvent; | 18 class ScrollEvent; |
| 17 class TouchEvent; | 19 class TouchEvent; |
| (...skipping 23 matching lines...) Expand all Loading... |
| 41 | 43 |
| 42 virtual RootWindow* AsRootWindow() = 0; | 44 virtual RootWindow* AsRootWindow() = 0; |
| 43 | 45 |
| 44 protected: | 46 protected: |
| 45 virtual ~RootWindowHostDelegate() {} | 47 virtual ~RootWindowHostDelegate() {} |
| 46 }; | 48 }; |
| 47 | 49 |
| 48 } // namespace aura | 50 } // namespace aura |
| 49 | 51 |
| 50 #endif // UI_AURA_ROOT_WINDOW_HOST_DELEGATE_H_ | 52 #endif // UI_AURA_ROOT_WINDOW_HOST_DELEGATE_H_ |
| OLD | NEW |