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

Unified Diff: services/ui/demo/mus_demo_external.h

Issue 2755673003: Allow parallel creation of windows
Patch Set: Created 3 years, 9 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | services/ui/demo/mus_demo_external.cc » ('j') | services/ui/demo/mus_demo_external.cc » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: services/ui/demo/mus_demo_external.h
diff --git a/services/ui/demo/mus_demo_external.h b/services/ui/demo/mus_demo_external.h
index 844e04186fd225084c1cbcd2cf7c175ce6de503c..9fb1d3f098a1a33d8cf7a6e884e0bbcfba0fa9b0 100644
--- a/services/ui/demo/mus_demo_external.h
+++ b/services/ui/demo/mus_demo_external.h
@@ -29,13 +29,16 @@ class MusDemoExternal : public MusDemo {
std::unique_ptr<aura::WindowTreeClient> CreateWindowTreeClient() final;
// aura::WindowTreeClientDelegate:
- void OnEmbed(std::unique_ptr<aura::WindowTreeHostMus> window_tree_host) final;
+ void OnRootWindowEmbed(aura::WindowTreeHostMus* window_tree_host) final;
fwang 2017/03/15 14:37:56 What about OnEmbedRootReady, to be consistent with
msisov 2017/03/16 08:17:52 Done.
void OnEmbedRootDestroyed(aura::WindowTreeHostMus* window_tree_host) final;
size_t initialized_windows_count_ = 0;
size_t number_of_windows_ = 1;
+ std::vector<std::unique_ptr<aura::WindowTreeHostMus>>
+ window_tree_host_mus_list_;
fwang 2017/03/15 14:37:56 I think you can just keep this in WindowTreeData.
msisov 2017/03/16 08:17:52 Done.
+
DISALLOW_COPY_AND_ASSIGN(MusDemoExternal);
};
« no previous file with comments | « no previous file | services/ui/demo/mus_demo_external.cc » ('j') | services/ui/demo/mus_demo_external.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698