Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(319)

Side by Side Diff: ui/aura/mus/window_tree_client.h

Issue 2797263002: Aura-Mus: Implement gutter in the embedder. (Closed)
Patch Set: Addressed sadrul's comments Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698