| OLD | NEW |
| (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_ |
| OLD | NEW |