| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 ASH_HOST_ASH_WINDOW_TREE_HOST_H_ | 5 #ifndef ASH_HOST_ASH_WINDOW_TREE_HOST_H_ |
| 6 #define ASH_HOST_ASH_WINDOW_TREE_HOST_H_ | 6 #define ASH_HOST_ASH_WINDOW_TREE_HOST_H_ |
| 7 | 7 |
| 8 #include <memory> | 8 #include <memory> |
| 9 | 9 |
| 10 #include "ash/ash_export.h" | 10 #include "ash/ash_export.h" |
| 11 #include "base/callback_forward.h" | 11 #include "base/callback_forward.h" |
| 12 | 12 |
| 13 namespace aura { | 13 namespace aura { |
| 14 class Window; | |
| 15 class WindowTreeHost; | 14 class WindowTreeHost; |
| 16 } | 15 } |
| 17 | 16 |
| 18 namespace gfx { | 17 namespace gfx { |
| 19 class Insets; | 18 class Insets; |
| 20 class Rect; | |
| 21 } | 19 } |
| 22 | 20 |
| 23 namespace ui { | 21 namespace ui { |
| 24 class EventSource; | |
| 25 class KeyEvent; | |
| 26 class LocatedEvent; | 22 class LocatedEvent; |
| 27 } | 23 } |
| 28 | 24 |
| 29 namespace ash { | 25 namespace ash { |
| 30 struct AshWindowTreeHostInitParams; | 26 struct AshWindowTreeHostInitParams; |
| 31 class InputMethodEventHandler; | 27 class InputMethodEventHandler; |
| 32 class RootWindowTransformer; | 28 class RootWindowTransformer; |
| 33 | 29 |
| 34 class ASH_EXPORT AshWindowTreeHost { | 30 class ASH_EXPORT AshWindowTreeHost { |
| 35 public: | 31 public: |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 78 // Translates the native mouse location into screen coordinates. | 74 // Translates the native mouse location into screen coordinates. |
| 79 void TranslateLocatedEvent(ui::LocatedEvent* event); | 75 void TranslateLocatedEvent(ui::LocatedEvent* event); |
| 80 | 76 |
| 81 private: | 77 private: |
| 82 InputMethodEventHandler* input_method_handler_; | 78 InputMethodEventHandler* input_method_handler_; |
| 83 }; | 79 }; |
| 84 | 80 |
| 85 } // namespace ash | 81 } // namespace ash |
| 86 | 82 |
| 87 #endif // ASH_HOST_ASH_WINDOW_TREE_HOST_H_ | 83 #endif // ASH_HOST_ASH_WINDOW_TREE_HOST_H_ |
| OLD | NEW |