| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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 COMPONENTS_MUS_PUBLIC_CPP_TESTS_WINDOW_TREE_CLIENT_PRIVATE_H_ | 5 #ifndef SERVICES_UI_PUBLIC_CPP_TESTS_WINDOW_TREE_CLIENT_PRIVATE_H_ |
| 6 #define COMPONENTS_MUS_PUBLIC_CPP_TESTS_WINDOW_TREE_CLIENT_PRIVATE_H_ | 6 #define SERVICES_UI_PUBLIC_CPP_TESTS_WINDOW_TREE_CLIENT_PRIVATE_H_ |
| 7 | 7 |
| 8 #include <stdint.h> | 8 #include <stdint.h> |
| 9 | 9 |
| 10 #include <memory> | 10 #include <memory> |
| 11 | 11 |
| 12 #include "base/macros.h" | 12 #include "base/macros.h" |
| 13 #include "components/mus/common/types.h" | 13 #include "services/ui/common/types.h" |
| 14 | 14 |
| 15 namespace display { | 15 namespace display { |
| 16 class Display; | 16 class Display; |
| 17 } | 17 } |
| 18 | 18 |
| 19 namespace ui { | 19 namespace ui { |
| 20 class Event; | 20 class Event; |
| 21 } | 21 } |
| 22 | 22 |
| 23 namespace mus { | 23 namespace mus { |
| (...skipping 26 matching lines...) Expand all Loading... |
| 50 ClientSpecificId client_id); | 50 ClientSpecificId client_id); |
| 51 | 51 |
| 52 private: | 52 private: |
| 53 WindowTreeClient* tree_client_impl_; | 53 WindowTreeClient* tree_client_impl_; |
| 54 | 54 |
| 55 DISALLOW_COPY_AND_ASSIGN(WindowTreeClientPrivate); | 55 DISALLOW_COPY_AND_ASSIGN(WindowTreeClientPrivate); |
| 56 }; | 56 }; |
| 57 | 57 |
| 58 } // namespace mus | 58 } // namespace mus |
| 59 | 59 |
| 60 #endif // COMPONENTS_MUS_PUBLIC_CPP_TESTS_WINDOW_TREE_CLIENT_PRIVATE_H_ | 60 #endif // SERVICES_UI_PUBLIC_CPP_TESTS_WINDOW_TREE_CLIENT_PRIVATE_H_ |
| OLD | NEW |