Chromium Code Reviews| Index: ash/host/ash_window_tree_host.h |
| diff --git a/ash/host/ash_window_tree_host.h b/ash/host/ash_window_tree_host.h |
| index b9c617fac9762c788b9e70d253fbedbc092008a4..7441f0d4ea937eaf1c6cb4a5d88486dee9179faa 100644 |
| --- a/ash/host/ash_window_tree_host.h |
| +++ b/ash/host/ash_window_tree_host.h |
| @@ -18,6 +18,10 @@ class Insets; |
| class Rect; |
| } |
| +namespace ui { |
| +class LocatedEvent; |
| +} |
| + |
| namespace ash { |
| struct AshWindowTreeHostInitParams; |
| class RootWindowTransformer; |
| @@ -57,6 +61,10 @@ class ASH_EXPORT AshWindowTreeHost { |
| // Stop listening for events in preparation for shutdown. |
| virtual void PrepareForShutdown() {} |
| + |
| + // Translates the native mouse location into screen coordinates. |
| + virtual void TranslateLocatedEvent(ui::LocatedEvent* event); |
|
sadrul
2014/12/01 18:25:54
This should be non-virtual (and maybe protected to
|
| + |
| }; |
| } // namespace ash |