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

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

Issue 2622103004: Mus Demo: Demonstrate external window mode (Closed)
Patch Set: Add MusDemoExternal 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 "services/ui/demo/mus_demo.h"
9 #include "services/ui/public/interfaces/window_tree_host.mojom.h"
10
11 namespace ui {
12 namespace demo {
13
14 class MusDemoExternal : public MusDemo {
15 public:
16 MusDemoExternal();
17
18 private:
19 void OnStartImpl() override;
20
21 // aura::WindowTreeClientDelegate:
22 void OnEmbed(
23 std::unique_ptr<aura::WindowTreeHostMus> window_tree_host) override;
24 void OnEmbedRootDestroyed(aura::WindowTreeHostMus* window_tree_host) override;
25
26 mojom::WindowTreeHostFactoryPtr window_tree_host_factory_;
27
28 DISALLOW_COPY_AND_ASSIGN(MusDemoExternal);
29 };
30
31 } // namespace demo
32 } // namespace aura
33
34 #endif // SERVICES_UI_DEMO_MUS_DEMO_EXTERNAL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698