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

Side by Side 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 unified diff | Download patch
« no previous file with comments | « ash/public/cpp/BUILD.gn ('k') | ash/shell.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright 2017 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 #ifndef ASH_PUBLIC_CPP_APP_CONFIG_H_
6 #define ASH_PUBLIC_CPP_APP_CONFIG_H_
7
8 namespace ash {
9
10 // Enumeration of the possible configurations supported by ash.
11 enum class Config {
12 // Classic mode does not use mus.
13 CLASSIC,
14
15 // Aura is backed by mus, but chrome and ash are still in the same process.
16 MUS,
17
18 // Aura is backed by mus and chrome and ash are in separate processes. In this
19 // mode chrome code can only use ash code in ash/public/cpp.
20 MASH,
21 };
22
23 } // namespace ash
24
25 #endif // ASH_PUBLIC_CPP_APP_CONFIG_H_
OLDNEW
« 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