summaryrefslogtreecommitdiffstats
path: root/components/mus/ws/window_server_delegate.cc
blob: 40c27518e166e7983b0b6eae83325c4fbd20e38c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
// Copyright 2015 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "components/mus/ws/window_server_delegate.h"

#include "components/mus/ws/window_tree_binding.h"

namespace mus {
namespace ws {

void WindowServerDelegate::OnFirstDisplayReady() {}

scoped_ptr<WindowTreeBinding> WindowServerDelegate::CreateWindowTreeBinding(
    BindingType type,
    ws::WindowServer* window_server,
    ws::WindowTree* tree,
    mojom::WindowTreeRequest* tree_request,
    mojom::WindowTreeClientPtr* client) {
  return nullptr;
}

}  // namespace ws
}  // namespace mus