blob: 3f7e6e23e469b2df473fd1051a2aeb1e78b88971 (
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 2016 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.
#ifndef MASH_COMMON_CONFIG_H_
#define MASH_COMMON_CONFIG_H_
#include <string>
namespace mash {
namespace common {
// This file contains configuration functions that can be used by any mash
// service.
// Returns the name of the window manager service to run. By default this will
// return "ash". A different value can be specified on the command line by
// passing --window-manager=<foo>.
std::string GetWindowManagerServiceName();
} // namespace common
} // namespace mash
#endif // MASH_COMMON_CONFIG_H_
|