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

Side by Side Diff: services/ui/demo/mus_demo_external.h

Issue 2622103004: Mus Demo: Demonstrate external window mode (Closed)
Patch Set: Address kylechar's feedback Created 3 years, 10 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
(Empty)
1 // Copyright 2017 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef SERVICES_UI_DEMO_MUS_DEMO_EXTERNAL_H_
6 #define SERVICES_UI_DEMO_MUS_DEMO_EXTERNAL_H_
7
8 #include <memory>
9 #include <vector>
10
11 #include "services/ui/demo/mus_demo.h"
12 #include "services/ui/public/interfaces/window_tree_host.mojom.h"
13
14 namespace display {
15 class Display;
16 }
17
18 namespace ui {
19 namespace demo {
20
21 class MusDemoExternal : public MusDemo {
22 public:
23 MusDemoExternal();
24 ~MusDemoExternal() final;
25
26 private:
27 // ui::demo::MusDemo:
28 void OnStartImpl(std::unique_ptr<aura::WindowTreeClient>* window_tree_client,
29 std::unique_ptr<WindowTreeData>* window_tree_data) final;
30
31 // aura::WindowTreeClientDelegate:
32 void OnEmbed(std::unique_ptr<aura::WindowTreeHostMus> window_tree_host) final;
33 void OnEmbedRootDestroyed(aura::WindowTreeHostMus* window_tree_host) final;
34
35 std::unique_ptr<display::Display> fake_display_;
36 mojom::WindowTreeHostFactoryPtr window_tree_host_factory_;
37
38 DISALLOW_COPY_AND_ASSIGN(MusDemoExternal);
39 };
40
41 } // namespace demo
42 } // namespace ui
43
44 #endif // SERVICES_UI_DEMO_MUS_DEMO_EXTERNAL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698