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 590 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
601 std::unique_ptr<discardable_memory::ClientDiscardableSharedMemoryManager> | 601 std::unique_ptr<discardable_memory::ClientDiscardableSharedMemoryManager> |
602 discardable_shared_memory_manager_; | 602 discardable_shared_memory_manager_; |
603 | 603 |
604 // If |compositor_context_factory_| is installed on Env, then this is the | 604 // If |compositor_context_factory_| is installed on Env, then this is the |
605 // ContextFactory that was set on Env originally. | 605 // ContextFactory that was set on Env originally. |
606 ui::ContextFactory* initial_context_factory_ = nullptr; | 606 ui::ContextFactory* initial_context_factory_ = nullptr; |
607 | 607 |
608 // Set to true once OnWmDisplayAdded() is called. | 608 // Set to true once OnWmDisplayAdded() is called. |
609 bool got_initial_displays_ = false; | 609 bool got_initial_displays_ = false; |
610 | 610 |
| 611 gfx::Insets normal_client_area_insets_; |
| 612 |
611 base::WeakPtrFactory<WindowTreeClient> weak_factory_; | 613 base::WeakPtrFactory<WindowTreeClient> weak_factory_; |
612 | 614 |
613 DISALLOW_COPY_AND_ASSIGN(WindowTreeClient); | 615 DISALLOW_COPY_AND_ASSIGN(WindowTreeClient); |
614 }; | 616 }; |
615 | 617 |
616 } // namespace aura | 618 } // namespace aura |
617 | 619 |
618 #endif // UI_AURA_MUS_WINDOW_TREE_CLIENT_H_ | 620 #endif // UI_AURA_MUS_WINDOW_TREE_CLIENT_H_ |
OLD | NEW |