| 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 COMPONENTS_MUS_PUBLIC_CPP_LIB_WINDOW_TREE_CLIENT_IMPL_H_ | 5 #ifndef COMPONENTS_MUS_PUBLIC_CPP_LIB_WINDOW_TREE_CLIENT_IMPL_H_ |
| 6 #define COMPONENTS_MUS_PUBLIC_CPP_LIB_WINDOW_TREE_CLIENT_IMPL_H_ | 6 #define COMPONENTS_MUS_PUBLIC_CPP_LIB_WINDOW_TREE_CLIENT_IMPL_H_ |
| 7 | 7 |
| 8 #include <stdint.h> | 8 #include <stdint.h> |
| 9 | 9 |
| 10 #include <map> | 10 #include <map> |
| (...skipping 275 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 286 bool delete_on_no_roots_; | 286 bool delete_on_no_roots_; |
| 287 | 287 |
| 288 bool in_destructor_; | 288 bool in_destructor_; |
| 289 | 289 |
| 290 base::ObserverList<WindowTreeConnectionObserver> observers_; | 290 base::ObserverList<WindowTreeConnectionObserver> observers_; |
| 291 | 291 |
| 292 scoped_ptr<mojo::AssociatedBinding<mojom::WindowManager>> | 292 scoped_ptr<mojo::AssociatedBinding<mojom::WindowManager>> |
| 293 window_manager_internal_; | 293 window_manager_internal_; |
| 294 mojom::WindowManagerClientAssociatedPtr window_manager_internal_client_; | 294 mojom::WindowManagerClientAssociatedPtr window_manager_internal_client_; |
| 295 | 295 |
| 296 MOJO_DISALLOW_COPY_AND_ASSIGN(WindowTreeClientImpl); | 296 DISALLOW_COPY_AND_ASSIGN(WindowTreeClientImpl); |
| 297 }; | 297 }; |
| 298 | 298 |
| 299 } // namespace mus | 299 } // namespace mus |
| 300 | 300 |
| 301 #endif // COMPONENTS_MUS_PUBLIC_CPP_LIB_WINDOW_TREE_CLIENT_IMPL_H_ | 301 #endif // COMPONENTS_MUS_PUBLIC_CPP_LIB_WINDOW_TREE_CLIENT_IMPL_H_ |
| OLD | NEW |