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

Unified Diff: ash/public/cpp/config.h

Issue 2777223002: Gets chrome --mus some what working (Closed)
Patch Set: fix mac Created 3 years, 9 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « ash/public/cpp/BUILD.gn ('k') | ash/shell.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ash/public/cpp/config.h
diff --git a/ash/public/cpp/config.h b/ash/public/cpp/config.h
new file mode 100644
index 0000000000000000000000000000000000000000..4fb88c6a82b78953d11c1b99843cdec30263d91c
--- /dev/null
+++ b/ash/public/cpp/config.h
@@ -0,0 +1,25 @@
+// Copyright 2017 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 ASH_PUBLIC_CPP_APP_CONFIG_H_
+#define ASH_PUBLIC_CPP_APP_CONFIG_H_
+
+namespace ash {
+
+// Enumeration of the possible configurations supported by ash.
+enum class Config {
+ // Classic mode does not use mus.
+ CLASSIC,
+
+ // Aura is backed by mus, but chrome and ash are still in the same process.
+ MUS,
+
+ // Aura is backed by mus and chrome and ash are in separate processes. In this
+ // mode chrome code can only use ash code in ash/public/cpp.
+ MASH,
+};
+
+} // namespace ash
+
+#endif // ASH_PUBLIC_CPP_APP_CONFIG_H_
« no previous file with comments | « ash/public/cpp/BUILD.gn ('k') | ash/shell.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698