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

Unified Diff: mash/common/config.h

Issue 2511233002: Add the beginning of a simple window manager that we'll support on Windows. (Closed)
Patch Set: . Created 4 years 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « mash/common/BUILD.gn ('k') | mash/common/config.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: mash/common/config.h
diff --git a/mash/common/config.h b/mash/common/config.h
new file mode 100644
index 0000000000000000000000000000000000000000..ff2fe78d623f8863e6bad8e381aef4ed5773fe97
--- /dev/null
+++ b/mash/common/config.h
@@ -0,0 +1,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_
« no previous file with comments | « mash/common/BUILD.gn ('k') | mash/common/config.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698