| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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_MUS_WINDOW_TREE_HOST_MUS_H_ | 5 #ifndef UI_AURA_MUS_WINDOW_TREE_HOST_MUS_H_ |
| 6 #define UI_AURA_MUS_WINDOW_TREE_HOST_MUS_H_ | 6 #define UI_AURA_MUS_WINDOW_TREE_HOST_MUS_H_ |
| 7 | 7 |
| 8 #include <memory> | 8 #include <memory> |
| 9 | 9 |
| 10 #include "base/macros.h" | 10 #include "base/macros.h" |
| 11 #include "services/service_manager/public/cpp/connector.h" | 11 #include "services/service_manager/public/cpp/connector.h" |
| 12 #include "ui/aura/aura_export.h" | 12 #include "ui/aura/aura_export.h" |
| 13 #include "ui/aura/window_tree_host_platform.h" | 13 #include "ui/aura/window_tree_host_platform.h" |
| 14 | 14 |
| 15 class SkBitmap; | |
| 16 | |
| 17 namespace display { | 15 namespace display { |
| 18 class Display; | 16 class Display; |
| 19 } | 17 } |
| 20 | 18 |
| 21 namespace service_manager { | |
| 22 class Connector; | |
| 23 } | |
| 24 | |
| 25 namespace aura { | 19 namespace aura { |
| 26 | 20 |
| 27 class InputMethodMus; | 21 class InputMethodMus; |
| 28 class WindowPortMus; | 22 class WindowPortMus; |
| 29 class WindowTreeClient; | 23 class WindowTreeClient; |
| 30 class WindowTreeHostMusDelegate; | 24 class WindowTreeHostMusDelegate; |
| 31 | 25 |
| 32 class AURA_EXPORT WindowTreeHostMus : public aura::WindowTreeHostPlatform { | 26 class AURA_EXPORT WindowTreeHostMus : public aura::WindowTreeHostPlatform { |
| 33 public: | 27 public: |
| 34 WindowTreeHostMus(std::unique_ptr<WindowPortMus> window_port, | 28 WindowTreeHostMus(std::unique_ptr<WindowPortMus> window_port, |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 69 bool in_set_bounds_from_server_ = false; | 63 bool in_set_bounds_from_server_ = false; |
| 70 | 64 |
| 71 std::unique_ptr<InputMethodMus> input_method_; | 65 std::unique_ptr<InputMethodMus> input_method_; |
| 72 | 66 |
| 73 DISALLOW_COPY_AND_ASSIGN(WindowTreeHostMus); | 67 DISALLOW_COPY_AND_ASSIGN(WindowTreeHostMus); |
| 74 }; | 68 }; |
| 75 | 69 |
| 76 } // namespace aura | 70 } // namespace aura |
| 77 | 71 |
| 78 #endif // UI_AURA_MUS_WINDOW_TREE_HOST_MUS_H_ | 72 #endif // UI_AURA_MUS_WINDOW_TREE_HOST_MUS_H_ |
| OLD | NEW |