| 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 UI_AURA_MUS_WINDOW_TREE_CLIENT_H_ | 5 #ifndef UI_AURA_MUS_WINDOW_TREE_CLIENT_H_ |
| 6 #define UI_AURA_MUS_WINDOW_TREE_CLIENT_H_ | 6 #define UI_AURA_MUS_WINDOW_TREE_CLIENT_H_ |
| 7 | 7 |
| 8 #include <stdint.h> | 8 #include <stdint.h> |
| 9 | 9 |
| 10 #include <map> | 10 #include <map> |
| (...skipping 616 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 627 bool got_initial_displays_ = false; | 627 bool got_initial_displays_ = false; |
| 628 | 628 |
| 629 // Set to true if the next CompositorFrame will block on a new child surface. | 629 // Set to true if the next CompositorFrame will block on a new child surface. |
| 630 bool synchronizing_with_child_on_next_frame_ = false; | 630 bool synchronizing_with_child_on_next_frame_ = false; |
| 631 | 631 |
| 632 // Set to true if this WindowTreeClient is currently holding pointer moves. | 632 // Set to true if this WindowTreeClient is currently holding pointer moves. |
| 633 bool holding_pointer_moves_ = false; | 633 bool holding_pointer_moves_ = false; |
| 634 | 634 |
| 635 gfx::Insets normal_client_area_insets_; | 635 gfx::Insets normal_client_area_insets_; |
| 636 | 636 |
| 637 bool in_shutdown_ = false; |
| 638 |
| 637 base::WeakPtrFactory<WindowTreeClient> weak_factory_; | 639 base::WeakPtrFactory<WindowTreeClient> weak_factory_; |
| 638 | 640 |
| 639 DISALLOW_COPY_AND_ASSIGN(WindowTreeClient); | 641 DISALLOW_COPY_AND_ASSIGN(WindowTreeClient); |
| 640 }; | 642 }; |
| 641 | 643 |
| 642 } // namespace aura | 644 } // namespace aura |
| 643 | 645 |
| 644 #endif // UI_AURA_MUS_WINDOW_TREE_CLIENT_H_ | 646 #endif // UI_AURA_MUS_WINDOW_TREE_CLIENT_H_ |
| OLD | NEW |