OLD | NEW |
---|---|
1 // Copyright 2017 The Chromium Authors. All rights reserved. | 1 // Copyright 2017 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_MUS_ASH_WINDOW_TREE_HOST_MUS_H_ | 5 #ifndef ASH_MUS_ASH_WINDOW_TREE_HOST_MUS_H_ |
6 #define ASH_MUS_ASH_WINDOW_TREE_HOST_MUS_H_ | 6 #define ASH_MUS_ASH_WINDOW_TREE_HOST_MUS_H_ |
7 | 7 |
8 #include "ash/host/ash_window_tree_host.h" | 8 #include "ash/host/ash_window_tree_host.h" |
9 #include "ui/aura/mus/window_tree_host_mus.h" | 9 #include "ui/aura/mus/window_tree_host_mus.h" |
10 | 10 |
(...skipping 19 matching lines...) Expand all Loading... | |
30 void PrepareForShutdown() override; | 30 void PrepareForShutdown() override; |
31 void RegisterMirroringHost(AshWindowTreeHost* mirroring_ash_host) override; | 31 void RegisterMirroringHost(AshWindowTreeHost* mirroring_ash_host) override; |
32 | 32 |
33 // aura::WindowTreeHostMus: | 33 // aura::WindowTreeHostMus: |
34 void SetRootTransform(const gfx::Transform& transform) override; | 34 void SetRootTransform(const gfx::Transform& transform) override; |
35 gfx::Transform GetRootTransform() const override; | 35 gfx::Transform GetRootTransform() const override; |
36 gfx::Transform GetInverseRootTransform() const override; | 36 gfx::Transform GetInverseRootTransform() const override; |
37 void UpdateRootWindowSizeInPixels( | 37 void UpdateRootWindowSizeInPixels( |
38 const gfx::Size& host_size_in_pixels) override; | 38 const gfx::Size& host_size_in_pixels) override; |
39 | 39 |
40 // ui::internal::InputMethodDelegate: | |
sky
2017/05/04 03:09:18
As this override comes through via AshWindowTreeHo
Hadi
2017/05/04 12:15:17
Done.
| |
41 ui::EventDispatchDetails DispatchKeyEventPostIME( | |
42 ui::KeyEvent* event) override; | |
43 | |
40 private: | 44 private: |
41 std::unique_ptr<TransformerHelper> transformer_helper_; | 45 std::unique_ptr<TransformerHelper> transformer_helper_; |
42 | 46 |
43 DISALLOW_COPY_AND_ASSIGN(AshWindowTreeHostMus); | 47 DISALLOW_COPY_AND_ASSIGN(AshWindowTreeHostMus); |
44 }; | 48 }; |
45 | 49 |
46 } // namespace ash | 50 } // namespace ash |
47 | 51 |
48 #endif // ASH_MUS_ASH_WINDOW_TREE_HOST_MUS_H_ | 52 #endif // ASH_MUS_ASH_WINDOW_TREE_HOST_MUS_H_ |
OLD | NEW |