OLD | NEW |
| (Empty) |
1 // Copyright 2015 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 #include "components/mus/ws/window_server_delegate.h" | |
6 | |
7 #include "components/mus/ws/window_tree_binding.h" | |
8 | |
9 namespace mus { | |
10 namespace ws { | |
11 | |
12 void WindowServerDelegate::OnFirstDisplayReady() {} | |
13 | |
14 std::unique_ptr<WindowTreeBinding> | |
15 WindowServerDelegate::CreateWindowTreeBinding( | |
16 BindingType type, | |
17 ws::WindowServer* window_server, | |
18 ws::WindowTree* tree, | |
19 mojom::WindowTreeRequest* tree_request, | |
20 mojom::WindowTreeClientPtr* client) { | |
21 return nullptr; | |
22 } | |
23 | |
24 } // namespace ws | |
25 } // namespace mus | |
OLD | NEW |